我正在使用Selenium webdriver。我想选择firefox的“后退”按钮,然后右键单击后退按钮并选择一个选项。
我看到右键单击有“Actions”API,但是我无法使用selenium选择/找到firefox的“后退”按钮元素。
任何人都可以帮助我。
代码iam尝试是::使用firefox驱动程序来启动Webdriver
Actions action= new Actions(driver);
action.contextClick(productLink).sendKeys(Keys.ARROW_DOWN).sendKeys(Keys.ARROW_DOWN).sendKeys(Keys.RETURN).build().perform();
在上面的代码中,我应该选择firefox浏览器的后退按钮元素来代替“productlink”。
答案 0 :(得分:0)
你不能用Selenium做到这一点。
您可以将AutoIT与Selenium一起使用来点击它。 请参阅以下有关如何使用AutoIT的文章。 http://toolsqa.wpengine.com/selenium-webdriver/autoit-selenium-webdriver/
答案 1 :(得分:0)
这是你能做的。尝试在selenium中使用“Navigation”命令。
driver.navigate()到( “http://www.DemoQA.com”);
您可以执行许多命令。如果您仍然发现使用它的问题,请告诉我。