自动化脚本无法在firefox 52(64位)上使用selenium 3.3.0右键单击webelement。脚本在IE11中工作,但在Firefox中没有任何反应。 二手geckodriver-v0.15.0-win64。 我有Windows 10和64位操作系统。 任何帮助将不胜感激。
以下代码:
WebElement predictresult = driver.findElement(By.xpath(
"//div[@class='QvFrame Document_CH07']/div[@class='QvContent']/div[@class='QvGrid']/div[1]/div[4]/div/div[1]/div[1]"));
Actions action = new Actions(driver);
action.contextClick(predictresult);
action.build().perform();
Thread.sleep(3000);
WebElement selectexcel = driver.findElement(By.xpath("//li[@class='cf ctx-menu-action-XL']/a/span"));
selectexcel.click();