问题
I have refreshed the browser in WebDriver using java as below code:
driver.navigate().refresh();
How can I do that by pressing Ctrl+F5 in WebDriver using Java?
回答1:
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();
来源:https://stackoverflow.com/questions/12299960/browser-refresh-by-ctrlf5-in-webdriver-using-java