The Web App Testing Guidebook
The Web App Testing Guidebook
UI Testing of Real World Websites Using WebdriverIO
About the Book
Check out the Web App Testing with WebdriverIO course, which is a video companion to this book.
Over the past decade, website complexity has grown substantially, requiring much more effort when it comes to testing. While test automation is certainly not a recent technique, it has grown in popularity lately due to the increased complexity of the sites we build.
In fact, many organizations have full teams dedicated just to testing their site. Quality Assurance is an important role for any company that wants to take its technology seriously.
However, having humans manually run through test scripts is time-consuming.
By automating tests, we shift the workload from manual labor to speedy CPUs. Without humans and their need to sleep and eat, we can test our sites on-demand, around the clock.
Wouldn't it be ideal to have a test suite so effective that your QA team focused solely on keeping it up-to-date?
Unfortunately, that's not the reality.
I've seen, heard, and have been part of many teams that set out after this ideal, only to realize months later that all the effort has provided them little benefit. Yes, they have test automation in place, but it's constantly breaking and causing endless headaches. It seems they either have tests that run well but don't validate much, or have tests that check for everything but are always reporting false errors.
In 2017 I spent the year recording screencasts covering WebdriverIO, a test automation framework that we'll be learning in this book. While I covered the details of the framework quite well (or so I was told), I was left with nagging questions of "is knowing the tool valuable enough?"
Is knowing how to mix colors and hold a paintbrush enough to be able to paint beautiful art?
Does knowing what the 'addValue' command does in WebdriverIO teach you enough to write tests that are effective?
So I'm rebuilding this content. I want to focus on that second part this time around. Yes, it's important to cover the details of commands and code. More importantly though, you need to see how you can combine all that technology to create a test suite that provides actual value.
In this book, I cover not only what WebdriverIO can do, but also how you'll be using it day-to-day. I've built the examples around real-world scenarios that demonstrate how you would actually set things up. It's not just "what", but also "how to get there".
It takes a little more work on my part, and extra effort on your's to get started, but the payoff is there, I promise.
About the Contributors

Technical Editor
https://mpgilbert.com/
Table of Contents
-
1.1 Introduction
- 1.1.1 Why Read This Book?
- 1.1.2 Why Use WebdriverIO?
- 1.1.3 Technical Details
-
1.2 Installation and Configuration
- 1.2.1 Software Requirements
- 1.2.2 Browsers and “Driving” Them
- 1.2.3 Installing WebdriverIO and Basic Usage
- 1.2.4 Upgrading to the WDIO Test Runner
- 1.2.5 Reviewing the Standard WebdriverIO Configuration File
- 1.2.6 Running the Example Test Runner Test
-
2.0 A ‘Real World’ App
- 2.0.1 Why ‘Real World’?
- 2.0.2 Use the Shared Demo App
- 2.0.3 Run Your Own Server Locally
- 2.0.4 Using a Docker Image (Recommended)
- 2.0.5 Self-install and Run
- 2.0.6 A Final Reminder
-
2.1 Site Loading and Navigation
- 2.1.1 Avoiding Troubles
- 2.1.2 Let’s Start
- 2.1.3 Writing our First Real Test
- 2.1.4 Elements and Actions
- 2.1.5 Finishing up
- 2.1.6 Adding Assertions
- 2.1.7 Expanding Assertions
- 2.1.8 The WebdriverIO Expect Library
- 2.1.9 Exceeding Expectations
- 2.1.10 Chapter Challenge
-
2.2 Selectors of Every Shape and Size
- 2.2.1 Selector Mania
- 2.2.2 CSS Selectors
- 2.2.3 XPath
- 2.2.4 Chaining Selectors
- 2.2.5 Custom Data Attributes for Testing
- 2.2.6 Avoiding Poorly Built Selectors
- 2.2.7 Chapter Challenge
-
2.3 Testing the Login Page
- 2.3.1 Is This Thing Working?
- 2.3.2 Slow It Down
- 2.3.3 Network Throttling
- 2.3.4 Waiting With Waits
- 2.3.5 Waiting With Inverse Waits
- 2.3.6 Chapter Challenge
-
2.4 Custom Functions, Page Objects, and Actions
- 2.4.1 You’ve Got Me Hooked
- 2.4.2 Getting the Error Text
- 2.4.3 Only One More Thing I Don’t Want to Skip
- 2.4.4 Custom Test Functions
- 2.4.5 Basics of Page Objects
- 2.4.6 Naming Patterns
- 2.4.7 Page Actions
- 2.4.8 Improving Our Login Detection
- 2.4.9: Separating Files
- 2.4.10 Chapter Challenge
-
2.5 Sharing Common Page Object Functionality
- 2.5.1 Testing the Post Editor
- 2.5.2 Has the Page Loaded Properly?
- 2.5.3 Storing Common Credentials as Test Fixtures
- 2.5.4 Using and Updating the Auth Login Function
- 2.5.5 Abstracting the Page Load
- 2.5.6 Common Page Objects
- 2.5.7 Time to ‘extend’ Our Generic Page
- 2.5.8 The ‘super’ Keyword
- 2.5.9 Implementing Our Generic Page Object
- 2.5.10 Using Our Page Object’s Path in Tests
- 2.5.11 Taking Advantage of NodeJS’s URL Utility
- 2.5.12 Finishing the URL Implementation
- 2.5.13 Chapter Challenge
-
2.6 Testing Complex Inputs
- 2.6.1 Testing the Publish Action
- 2.6.2 Key Commands
- 2.6.3 Submitting and Validating the Result
- 2.6.4 Form Submission Functions
- 2.6.5 ChanceJS to Create Data
- 2.6.6 Checking Page Data
- 2.6.7 Testing Multiple Tags
- 2.6.8 Checking Alerts When Leaving With Unsaved Changes
- 2.6.9 A Not-So-Random Chance
- 2.6.10 Global Chance via WebdriverIO Configuration Hooks
- 2.6.11 Chapter Challenge
-
2.7 Managing User Sessions
- 2.7.1 Thinking Through a New Type of Test
- 2.7.2 Checking Those Feeds
- 2.7.3 Session Management
- 2.7.4 Executing Arbitrary Scripts in the Browser
- 2.7.5 Speeding up the login via APIs
- 2.7.6 Global Custom Commands
- 2.7.7 Chapter Challenge
-
2.8 Creating Page Components
- 2.8.1 Checking the Active Tab
- 2.8.2 Switching Tabs
- 2.8.3 Dynamic Content Testing
- 2.8.4 Waiting to Load
- 2.8.5 Custom Page Components
- 2.8.6 The Feed Page Component
- 2.8.7 Testing Feeds
- 2.8.8 Testing Feed Content
- 2.8.9 Validating Multiple Properties Easier
- 2.8.10 Chapter Challenge
-
2.9 Generating Data for Testing via APIs
- 2.9.1 The ‘Tag’ Page
- 2.9.2 Creating a New Article/Tag via the API
- 2.9.3 Writing Our Tag Page Test
- 2.9.4 Cleaning Up Our Mess
- 2.9.5 Exercises
-
3.0 Chapter Challenge Code Solutions
- Chapter 2.1: Assertions
- Chapter 2.2: Selectors
- Chapter 2.3: Waiting Another Way
- Chapter 2.4: Registration Tests
- Chapter 2.5: More Sharing
- Chapter 2.6: Validating ‘Edit Article’ Functionality
- Chapter 2.7: Move ‘loginViaApi’ Command to the Auth Page Object
- Chapter 2.8: Validating the “Popular Tags” Block
- Chapter 2.9: Public User Profile Page Tests
- 3.1 Final Thoughts
Causes Supported

Open Sourcing Mental Illness, Ltd
Changing how we talk about mental health in the tech community.
https://osmihelp.orgChanging how we talk about mental health in the tech community.
The Leanpub 60-day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
Do Well. Do Good.
Authors have earned$11,724,246writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers), EPUB (for phones and tablets) and MOBI (for Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Top Books
Recipes for Decoupling
Matthias NobackWrite software that survives
CQRS by Example
Carlos Buenosvinos, Christian Soronellas, and Keyvan Akbary- Leverage your Software Architecture skills by learning everything about CQRS in detail with lots of examples
- Develop faster applications by applying CQRS and fostering Read Models and Projections
- Learn how to apply CQRS into a brownfield project from a pragmatic approach
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
Rector - The Power of Automated Refactoring
Matthias Noback and Tomas VotrubaLearn how to automatically and continuously upgrade and improve your PHP code base
Maîtriser Apache JMeter
Philippe Mouawad, Bruno Demion (Milamber), and Antonio Gomes RodriguesToute la puissance d'Apache JMeter expliquée par ses commiteurs et utilisateurs experts. De l'intégration continue en passant par le Cloud, vous découvrirez comment intégrer JMeter à vos processus "Agile" et Devops.
If you're looking for the newer english version of this book, go to Master JMeter : From load testing to DevOps
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
Jetpack Compose internals
Jorge CastilloJetpack Compose is the future of Android UI. Master how it works internally and become a more efficient developer with it. You'll also find it valuable if you are not an Android dev. This book provides all the details to understand how the Compose compiler & runtime work, and how to create a client library using them.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
Mastering STM32 - Second Edition
Carmine NovielloWith more than 1200 microcontrollers, STM32 is probably the most complete ARM Cortex-M platform on the market. This book aims to be the most complete guide around introducing the reader to this exciting MCU portfolio from ST Microelectronics and its official CubeHAL and STM32CubeIDE development environment.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Top Bundles
- #2
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #3
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #4
Software Architecture
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #5
Static Analysis and Automated Refactoring
2 Books
As PHP developers we are living in the "Age of Static Analysis". We can use a tool like PHPStan to learn about potential bugs before we ship our code to production, and we can enforce our team's programming standards using custom PHPStan rules. Recipes for Decoupling by Matthias Noback teaches you in great detail how to do this, while also... - #9
All the Books of The Medical Futurist
6 Books
We put together the most popular books from The Medical Futurist to provide a clear picture about the major trends shaping the future of medicine and healthcare. Digital health technologies, artificial intelligence, the future of 20 medical specialties, big pharma, data privacy, digital health investments and how technology giants such as Amazon...