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
All 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
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
 Sharma Sharma
Author Profile Icon Sharma
Sharma
UNMESH GUNDECHA UNMESH GUNDECHA
Author Profile Icon UNMESH GUNDECHA
UNMESH GUNDECHA
 Avasarala Avasarala
Author Profile Icon Avasarala
Avasarala
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

Title Page
Copyright and Credits
Packt Upsell
Contributors
Preface
1. Introducing WebDriver and WebElements FREE CHAPTER 2. Different Available WebDrivers 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 1. Assessments 2. Other Books You May Enjoy Index

Chapter 4


  1. Which are the different formats we can use to output a screenshot?

The OutputType interface support screenshot types in BASE64, BYTES, and FILE formats.

 

  1. How can we switch to another browser tab with Selenium?

We can switch to another browser tab using the driver.switchTo().window() method.

  1. True or false: The defaultContent() method will switch to the previously selected frame.

False. ThedefaultContent() method will switch to the page.

  1. What navigation methods are available with Selenium?

The Navigate interface provides to() , back()forward() , and refresh() methods.

  1. How can we add a cookie using Selenium?

We can add a cookie using the driver.manage().addCookie(Cookie cookie) method.

  1. Explain the difference between an implicit wait and an explicit wait.

An implicit wait once set will be available for the entire life of the WebDriver instance. It will wait for the element when findElement is called for the set duration. If the element doesn't appear in DOM in a set time, it will throw the NoSuchElementFound exception.

An explicit wait, on the other hand, is used to wait for the specific condition to happen (for example, the visibility or invisibility of the element, a change in title, a change in attribute of the element, thee element becoming editable or for a custom condition). Unlike an implicit wait, the explicit wait will poll the DOM for the condition to fulfill instead of waiting for a fixed amount of time. It will come out if the condition is fulfilled before the defined timeout, else it will throw an exception. We can use various predefined conditions from the   ExpectedConditions class with the explicit wait.

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 $15.99/month. Cancel anytime
Visually different images