What are the different types of navigation commands?
Question
What are the different types of navigation commands?
Answer
Following are the navigation commands:
-
navigate().back() - It doesn’t require any parameters and takes back the user to the previous webpage in the web browser’s history.
Ex. driver.navigate().back();
- navigate().forward() - it lets the user to navigate to the next web page with reference to the browser’s history.
Ex. driver.navigate().forward();
- navigate().refresh() - It lets the user to refresh the current web page there by reloading all the web elements.
Ex. driver.navigate().refresh();
- navigate().to() - It lets the user to launch a new web browser window and navigate to the specified URL.
Ex. driver.navigate().to(“https://google.com”);