Firefox Version: 52.0.2 (32 bit)
Platform: Windows 7 - 64 bit
Selenium Webdriver Version: 3.4.0 (Java bindings)
GeckoDriver: 0.16.0
Problem Statement:
Selenium 3.x is unable to perform double click operation.
Test Code:
public class GeckoTest {
public static void main(String[] args) throws IOException {
System.setProperty("webdriver.gecko.driver","I:\\jetbrainsworkspace\\src\\test\\resources\\geckodriver.exe");
FirefoxBinary binary = new FirefoxBinary(new File("D:\\installations\\browsers\\ff\\52.0.2_32\\firefox.exe"));
FirefoxOptions options = new FirefoxOptions();
options.setBinary(binary);
options.setLogLevel(Level.ALL);
WebDriver browser = new FirefoxDriver(options);
browser.manage().timeouts().pageLoadTimeout(10, TimeUnit.SECONDS);
browser.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
browser.get("https://examples.sencha.com/extjs/6.0.1/examples/classic/ticket-app/index.html");
WebDriverWait wait = new WebDriverWait(browser,20,3000);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.name("password"))).sendKeys("sometext");
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(".//span[text()='Login']"))).click();
WebElement ele = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(".//div[text()='Fiant adipiscing clari nunc molestie per placerat vero insitam; ullamcorper saepius etiam claritatem quod.']")));
Actions builder = new Actions(browser);
builder.doubleClick(ele).build().perform();
browser.close();
}
}
EDIT: Manual Steps
- Navigate to EXTJs link
- Login with any password.
- On the right hand side you will find a table of tickets.
- If you double click on any one ticket that then it will open that ticket.