无法使用selenium(java)自动化右键单击firefox浏览器

时间:2017-07-14 07:20:54

标签: java selenium

仅在firefox浏览器中无法右键单击我的selenium脚本。以下是我使用过的代码

WebElement test = driver.findElement(By.id("testing"));
action.contextClick(test).perform();//right click on job area

以下是执行时看到的错误:

org.openqa.selenium.UnsupportedCommandException: mouseMoveTo
Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'

1 个答案:

答案 0 :(得分:1)

尝试使用此 -

WebElement element = driver.findElement(By.id("testing"));
Actions action = new Actions(driver).contextClick(element);
action.build().perform();