Book Image

Selenium Essentials

By : Prashanth Sams
Book Image

Selenium Essentials

By: Prashanth Sams

Overview of this book

Table of Contents (12 chapters)

Chapter 4. Selenium WebDriver Best Practices

In this chapter, we will learn the best practices for Selenium WebDriver and its techniques for handling a complex web application. Better understanding of WebDriver provides better results to find a quick solution. For example, JavascriptExecutor provides a quick workaround to automate web pages at a faster rate without using DOM.

In general, we face problems while involving an automation process without examining the application. It's quite necessary to understand why standard WebDriver approaches fail to work. Most of the problems occur when a page is overloaded with Ajax calls that load DOM elements asynchronously or when a page contains lots of frames, ActiveX/flex/flash components, and so on. Eventually, Selenium WebDriver overrides all these glitches with a proper workaround, where the driver simulates browsers exactly like a real user would do.

An efficient approach will help you to ensure better interaction with user interface components...