Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Selenium WebDriver 3 Practical Guide
Selenium WebDriver 3 Practical Guide

Selenium WebDriver 3 Practical Guide: End-to-end automation testing for web and mobile browsers with Selenium WebDriver , Second Edition

Arrow left icon
Profile Icon Sharma Profile Icon UNMESH GUNDECHA Profile Icon Avasarala
Arrow right icon
€8.99 €26.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.6 (5 Ratings)
eBook Jul 2018 280 pages 2nd Edition
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Sharma Profile Icon UNMESH GUNDECHA Profile Icon Avasarala
Arrow right icon
€8.99 €26.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.6 (5 Ratings)
eBook Jul 2018 280 pages 2nd Edition
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Selenium WebDriver 3 Practical Guide

Different Available WebDrivers

The previous chapter introduced the Selenium WebDriver architecture and WebDriver interface. We used Google Chrome with ChromeDriver to create a simple test. In this chapter, we will explore the WebDriver implementation for Mozilla Firefox, Microsoft Internet Explorer, Microsoft Edge, and Safari. With WebDriver becoming a W3C specification, all of the major browser vendors now support WebDriver natively. In this chapter, we will look at the following:

  • Using driver-specific implementations for Mozilla Firefox, Google Chrome, Microsoft Internet Explorer and Edge, and Apple Safari
  • Using the browser options class to execute tests in headless mode and use custom profiles
  • Using mobile emulation with Google Chrome

Firefox Driver

The implementation of Firefox Driver has been changed in Selenium 3.0. Starting with Firefox version 47.0+, we need to use separate a driver that will interact with the Firefox browser similarly to ChromeDriver. The new driver for Firefox is called Geckodriver.

The Geckodriver provides the HTTP API described by the W3C WebDriver Protocol to communicate with Gecko browsers, such as Firefox. It translates calls into the Firefox Remote Protocol (Marionette) by acting as a proxy between the local and remote ends.

Using GeckoDriver

In this section, we will see how to configure and use Geckodriver for Firefox in our tests. First of all, we need to download the Geckodriver executable from https://github.com/mozilla...

Chrome Driver

The ChromeDriver works similar to the Geckodriver and implements the W3C WebDriver protocol. We saw how to set up and use ChromeDriver in Chapter 1. In this section, we will focus on the ChromeDriver options to run tests in headless mode, use mobile emulation, and use custom profiles.

Using Headless Mode

Similar to Firefox, we can run tests in headless mode with ChromeDriver. This makes Chrome tests run faster and tests run more efficiently, especially in the CI (Continuous Integration) environment.

We can run Selenium tests in headless mode by configuring the ChromeOptions class as shown in the following code snippet:

@BeforeMethod
public void setup() {
System.setProperty("webdriver.chrome.driver"...

InternetExplorerDriver

In order to execute your test scripts on the Internet Explorer browser, you need WebDriver's InternetExplorerDriver. Similar to Google Chrome and Firefox, we need to download the IEDriver Server executable from https://www.seleniumhq.org/download/ for Internet Explorer.

The IEDriver server then uses its IEThreadExplorer class, which is written in C++, to drive the IE browser using the Component Object Model framework.

Writing your first test script for the IE browser

Now you are all set to write test scripts that run on the Internet Explorer browser. The following is the code that instantiates InternetExplorerDriver:

public class SearchTest {

WebDriver driver;

@BeforeMethod
public void...

Edge Driver

Microsoft Edge is the latest web browser launched with Microsoft Windows 10. Microsoft Edge was one of the first browsers to implement the W3C WebDriver standard and provides built-in support for Selenium WebDriver.

Similar to Internet Explorer, in order to execute test scripts on the Microsoft Edge browser, we need to use the EdgeDriver class and a standalone Microsoft WebDriver Server executable. The Microsoft WebDriver Server is maintained by the Microsoft Edge development team. You can find more information at https://docs.microsoft.com/en-gb/microsoft-edge/webdriver

Writing your first test script for the Edge browser

Let's set up the Microsoft WebDriver Server and create a test for testing the search...

Safari Driver

With Selenium 3.0 and WebDriver becoming the W3C standard, Apple now provides SafariDriver built into the browser. We do not have to download it separately. However, in order to work it with Selenium WebDriver, we have to set a Develop | Allow Remote Automation option from Safari's main menu, as shown in the following screenshot:

Allowing remote automation

Writing your first test script for the Safari browser

This is as straight forward. The following is the test script using the Safari Driver:

public class SearchTest {

WebDriver driver;

@BeforeMethod
public void setup() {

driver = new SafariDriver();
driver.get("http://demo-store.seleniumacademy.com/");
}

@Test
...

Summary

In this chapter, you have seen some of the major implementations of WebDriver that are widely used in the industry. We looked at some of the key configuration options for each browser and how to use them for custom profiles and mobile emulation. The underlying technology for every driver is JSONWire Protocol, which is fundamental for all the implementations. In the next chapter, we will learn how to use the Java 8 Stream API and Lambda functions with the Selenium WebDriver API.

Questions

  1. What is the significance of WebDriver becoming W3C Specification?
  2. True or False: WebDriver is an interface?
  3. Which browsers support Headless testing?
  4. How can we test mobile websites with Chrome?

Further information

You can check out the following links for more information about the topics covered in this chapter:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Unlock the full potential of Selenium to test your web applications
  • Use Selenium Grid for faster, parallel running, and cross-browser testing
  • Test iOS and Android Apps with Appium

Description

Selenium WebDriver is an open source automation tool implemented through a browser-specific driver, which sends commands to a browser and retrieves results. The latest version of Selenium 3 brings with it a lot of new features that change the way you use and setup Selenium WebDriver. This book covers all those features along with the source code, including a demo website that allows you to work with an HMTL5 application and other examples throughout the book. Selenium WebDriver 3 Practical Guide will walk you through the various APIs of Selenium WebDriver, which are used in automation tests, followed by a discussion of the various WebDriver implementations available. You will learn to strategize and handle rich web UI using advanced WebDriver API along with real-time challenges faced in WebDriver and solutions to handle them. You will discover different types and domains of testing such as cross-browser testing, load testing, and mobile testing with Selenium. Finally, you will also be introduced to data-driven testing using TestNG to create your own automation framework. By the end of this book, you will be able to select any web application and automate it the way you want.

Who is this book for?

Selenium WebDriver 3 Practical Guide is for software quality assurance/testing professionals, software project managers, or software developers interested in using Selenium for testing their applications. Prior programming experience in Java is necessary.

What you will learn

  • Understand what Selenium 3 is and how is has been improved than its predecessor
  • Use different mobile and desktop browser platforms with Selenium 3
  • Perform advanced actions, such as drag-and-drop and action builders on web page
  • Learn to use Java 8 API and Selenium 3 together
  • Explore remote WebDriver and discover how to use it
  • Perform cross browser and distributed testing with Selenium Grid
  • Use Actions API for performing various keyboard and mouse actions

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 31, 2018
Length: 280 pages
Edition : 2nd
Language : English
ISBN-13 : 9781788996013
Vendor :
Selenium
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jul 31, 2018
Length: 280 pages
Edition : 2nd
Language : English
ISBN-13 : 9781788996013
Vendor :
Selenium
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 106.97
Selenium Framework Design in Data-Driven Testing
€36.99
Selenium WebDriver 3 Practical Guide
€32.99
Mastering Selenium WebDriver 3.0
€36.99
Total 106.97 Stars icon
Banner background image

Table of Contents

13 Chapters
Introducing WebDriver and WebElements Chevron down icon Chevron up icon
Different Available WebDrivers Chevron down icon Chevron up icon
Using Java 8 Features with Selenium Chevron down icon Chevron up icon
Exploring the Features of WebDriver Chevron down icon Chevron up icon
Exploring Advanced Interactions of WebDriver Chevron down icon Chevron up icon
Understanding WebDriver Events Chevron down icon Chevron up icon
Exploring RemoteWebDriver Chevron down icon Chevron up icon
Setting up Selenium Grid Chevron down icon Chevron up icon
The PageObject Pattern Chevron down icon Chevron up icon
Mobile Testing on iOS and Android using Appium Chevron down icon Chevron up icon
Data-Driven Testing with TestNG Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.6
(5 Ratings)
5 star 20%
4 star 20%
3 star 0%
2 star 20%
1 star 40%
Sanjay Bhati Feb 17, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Good book for concept clearityFor fresher as well for experienceTopic like dropdown select, image comprison can add more value if added in the book
Amazon Verified review Amazon
Chanchal Sharma Jul 03, 2019
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
The book is recommended by one of my mentor and I found this is really helpful for my automation learning.
Amazon Verified review Amazon
Alexander Jan 05, 2020
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
Very undetailed book.
Amazon Verified review Amazon
mr c a knight Aug 04, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Won't download stuck on 95%
Amazon Verified review Amazon
John Oct 25, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
I do not see any details about this books , what does it covers ,what to expect before buying this book . details must be provided for customer before purchasing
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.