Search icon CANCEL
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 WebDriver 3 Practical Guide

You're reading from   Selenium WebDriver 3 Practical Guide End-to-end automation testing for web and mobile browsers with Selenium WebDriver

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher Packt
ISBN-13 9781788999762
Length 280 pages
Edition 2nd Edition
Languages
Arrow right icon
Authors (3):
Arrow left icon
Satya Avasarala Satya Avasarala
Author Profile Icon Satya Avasarala
Satya Avasarala
Pallavi Sharma Pallavi Sharma
Author Profile Icon Pallavi Sharma
Pallavi Sharma
UNMESH GUNDECHA UNMESH GUNDECHA
Author Profile Icon UNMESH GUNDECHA
UNMESH GUNDECHA
Arrow right icon
View More author details
Toc

Table of Contents (14) Chapters Close

Preface 1. Introducing WebDriver and WebElements 2. Different Available WebDrivers FREE CHAPTER 3. Using Java 8 Features with Selenium 4. Exploring the Features of WebDriver 5. Exploring Advanced Interactions of WebDriver 6. Understanding WebDriver Events 7. Exploring RemoteWebDriver 8. Setting up Selenium Grid 9. The PageObject Pattern 10. Mobile Testing on iOS and Android using Appium 11. Data-Driven Testing with TestNG 12. Assessments 13. Other Books You May Enjoy

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
...
You have been reading a chapter from
Selenium WebDriver 3 Practical Guide - Second Edition
Published in: Jul 2018
Publisher: Packt
ISBN-13: 9781788999762
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