如何使用与Selenium的javascript双击WebElement

时间:2015-10-15 07:42:47

标签: javascript java selenium webdriver

由于selenium允许执行java脚本,我想点击并双击webelement或x,y使用java脚本进行坐标。我想使用java脚本,因为带下划线的webelement是浏览器上的Flash / svg对象。

请让我知道如何在flash / svg webelement上使用java脚本双击。

提前致谢... Srinivas - 愿意学习新事物:)

1 个答案:

答案 0 :(得分:0)

使用以下代码:

Actions action = new Actions(driver);   
 WebElement element = driver.findElement(By.xpath(your_xpath));

   action.doubleClick(suite_name); 
   action.perform();