Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
vrangaiah
Posts : 1
Join date : 2011-08-31

Double Click on image using Selenium Empty 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
avatar
iAssets
Posts : 2
Join date : 2012-08-22

Double Click on image using Selenium Empty 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:

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.
Back to top
Permissions in this forum:
You cannot reply to topics in this forum