无法访问模式窗口,操作不起作用

时间:2018-08-13 13:52:22

标签: java selenium-webdriver

我正在尝试使该网站http://the-internet.herokuapp.com自动化,我必须转到http://the-internet.herokuapp.com/exit_intent并将其悬停在视口窗格之外,以便显示模式窗口。

我不确定该怎么做,我尝试了一些操作,假设我在右上角出现了模态窗口,因此试图将鼠标悬停在该图像上,但是它不起作用。

这是操作代码-

driver.get(“ http://the-internet.herokuapp.com/exit_intent”);

Actions ACTION = new Actions(driver);

ACTION.moveToElement(driver.findElement(By.xpath(“ // a [@href ='https://github.com/tourdedave/the-internet'] / img”)))。build()。perform();

我不确定该怎么做,我们非常感谢您的帮助。

这是URL-http://the-internet.herokuapp.com/exit_intent

我尝试搜索SO,但是找不到合适的解决方案。

1 个答案:

答案 0 :(得分:0)

您可以使用driver.switchTo().frame("modalframname"); 然后您的代码.frame会将u切换到该框架,并且您可以对此框架进行测试。