Navigation

Page navigation kicks in from the start of test execution; it is a fundamental task for each and every use case, especially to browse through the history and navigate backwards and forward. Let's discuss Selenium navigation functions, as follows:

  • The get() function commands the browser to navigate to the URL. In general, the get() function is used to open a web page on every test execution. The onload event lets the browser wait until the complete page is loaded. If the page is overloaded with lots of Ajax calls, there will be delays on page load. The following is the syntax for this function:
    driver.get("URL");
  • The navigate().back() function lets the browser navigate backwards. The following is the syntax for this function:
    driver.navigate().back(); ...

Get Selenium Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.