Reputation: 4507
We have various ways in Selenium like driver.navigate().refresh();
and driver.execute_script("location.reload()")
to do refresh, but these perform normal refresh. I want to hard refresh my page, is there any way to hard refresh the page using Selenium.
The code in any of Java/Python would be welcomed.
Note: I don't want to use Robot class to perform it, so please provide any other way to do it.
Upvotes: 8
Views: 14119
Reputation: 5204
A Regular refresh may reload the page from its cache.
A Hard refresh reloads from the server, not from cache.
If you wish to delete the Cache too use Cache.delete()
:
see MDN Web Docs on Cache.delete().
You can use location.reload(true);
with execute_script
:
driver.execute_script("location.reload(true);")
Reloads the resource from the current URL. Its optional unique parameter is a Boolean, which, when it is true, causes the page to always be reloaded from the server. If it is false or not specified, the browser may reload the page from its cache.
For more info see MDN Web Docs on Location.
Hope this helps!
Upvotes: 23