how to reload page code example

Example 1: refresh window js

window.location.reload();

Example 2: jquery reload page

$('#myElement').click(function() {
    location.reload();
});

Example 3: javascript reload page

location.reload();

Example 4: ways of refreshing page

driver.navigate().refresh();
driver.get(“URL”);
driver.get(driver.getCurrentUrl());
driver.navigate().to(“URL”);
driver.navigate().to(driver.getCurrentUrl());
Using sendKeys(Keys.F5) on any text box on the webpage

Example 5: what is location reload

The Location.reload() method reloads the current URL, like the Refresh button.
may be blocked and a SECURITY_ERROR DOMException thrown if 
the origin of the calling script differs from 
the origin of the page that owns the Location object.

Tags:

Misc Example