- vrangaiah
- Posts : 1
Join date : 2011-08-31
Double Click on image using Selenium
Thu Sep 08, 2011 8:37 pm
I have test case where I have to double click on the image to check the test case.
Xpath from Xpath Checker :-
id('base')/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr[2]/x:td/x:table/x:tbody/x:tr[2]/x:td[2]/x:div/x:div/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr[1]/x:td[2]/x:div/x:table/x:tbody/x:tr[1]/x:td
Xpath from Inspect Element (Copy Xpath) :-
/html/body/div[2]/table/tbody/tr/td/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr[2]/td[2]/div/div/table/tbody/tr/td/table/tbody/tr/td[2]/div/table/tbody/tr/td/img
HTML Tag :-
class="cwks-EnableHand" style="width: 48px; height:
48px;">
DoubleClick API do not work, since it works only for Button or link. In my application its image.
Please suggest if have faced same problem or if have solution
Xpath from Xpath Checker :-
id('base')/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr[2]/x:td/x:table/x:tbody/x:tr[2]/x:td[2]/x:div/x:div/x:table/x:tbody/x:tr/x:td/x:table/x:tbody/x:tr[1]/x:td[2]/x:div/x:table/x:tbody/x:tr[1]/x:td
Xpath from Inspect Element (Copy Xpath) :-
/html/body/div[2]/table/tbody/tr/td/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr[2]/td[2]/div/div/table/tbody/tr/td/table/tbody/tr/td[2]/div/table/tbody/tr/td/img
HTML Tag :-
class="cwks-EnableHand" style="width: 48px; height:
48px;">
DoubleClick API do not work, since it works only for Button or link. In my application its image.
Please suggest if have faced same problem or if have solution
- iAssets
- Posts : 2
Join date : 2012-08-22
Re: Double Click on image using Selenium
Thu Aug 23, 2012 9:44 pm
In Selenium WebDriver (Java - 2.25.0 - 2012-07-18), the following code doesn't build:
Eclipse says: "Type mismatch: cannot convert from void to ExecProtos.ActionList.Action".
However, the following works in Selenium WebDriver:
Does anybody know if it (doubleclick) works in Selenium IDE? I tried in Selenium 1.9.0 (firefox), but the Command, "doubleClick" is doing NOTHING.
- Code:
WebDriver driver = new FirefoxDriver();
WebElement element = driver.findElement(By.xpath("yourpath"));
Actions builder = new Actions(driver);
Action doubleClick = builder.doubleClick(element).build().perform();
Eclipse says: "Type mismatch: cannot convert from void to ExecProtos.ActionList.Action".
However, the following works in Selenium WebDriver:
- Code:
String baseUrl = "your url";
String my_xpath = "yourpath";
Selenium s = new WebDriverBackedSelenium(driver, baseUrl);
s.doubleClick(("xpath=" + my_xpath));
Does anybody know if it (doubleclick) works in Selenium IDE? I tried in Selenium 1.9.0 (firefox), but the Command, "doubleClick" is doing NOTHING.
Permissions in this forum:
You cannot reply to topics in this forum