Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Selenium Essentials

You're reading from   Selenium Essentials Get to grips with automated web testing with the amazing power of Selenium WebDriver

Arrow left icon
Product type Paperback
Published in Mar 2015
Publisher
ISBN-13 9781784394332
Length 194 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Prashanth Sams Prashanth Sams
Author Profile Icon Prashanth Sams
Prashanth Sams
Arrow right icon
View More author details
Toc

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();

    Here is an alternative method using keyboard actions to navigate web browser history.

    Actions actions = new Actions(driver);
    actions.sendKeys(Keys.BACK_SPACE).perform();
  • The navigate().forward() function allows the browser to navigate forward...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime