由于selenium允许执行java脚本,我想点击并双击webelement或x,y使用java脚本进行坐标。我想使用java脚本,因为带下划线的webelement是浏览器上的Flash / svg对象。
请让我知道如何在flash / svg webelement上使用java脚本双击。
提前致谢... Srinivas - 愿意学习新事物:)
答案 0 :(得分:0)
使用以下代码:
Actions action = new Actions(driver);
WebElement element = driver.findElement(By.xpath(your_xpath));
action.doubleClick(suite_name);
action.perform();