0
I have a driver in java selenium :
driver.get(url);
I have made some changes to a WebElement with this method :
JavascriptExecutor jse = (JavascriptExecutor) driver;
jse.executeScript(“arguments[0].value=”;”, element);
How do I reload the page with the modifications ? I have tried driver.navigate.refresh() but that doesn’t work.
Thank you for your ideas
Source: Read More