本文介绍了使用Java在WebDriver中通过Ctrl + F5刷新浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已使用Java刷新WebDriver中的浏览器,如下代码:
I have refreshed the browser in WebDriver using java as below code:
driver.navigate().refresh();
如何使用Java在WebDriver中按Ctrl + F5来做到这一点?
How can I do that by pressing Ctrl+F5 in WebDriver using Java?
推荐答案
我认为您可以使用WebDriver和Actions实例,如下所示:
I think you can use the WebDriver and Actions instance as below:
Actions actionObject = new Actions(driver);
actionObject.keyDown(Keys.CONTROL).sendKeys(Keys.F5).keyUp(Keys.CONTROL).perform();
这篇关于使用Java在WebDriver中通过Ctrl + F5刷新浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!