Creating an extension class for web tables

Selenium WebDriver provides a generic WebElement class to work with various types of HTML elements. It also provides helper classes to work with the Select element. However, there is no built-in class to support the web tables or <table> elements.

In this recipe, we will implement a helper class for web tables. Using this class, we will retrieve properties and perform some basic operations on a web table element.

Getting ready

Create a new Java class WebTable.java, which we will use to implement the support for table elements.

How to do it...

Let's implement the web table extension code with WebTable.java using the following steps:

  1. Add a constructor for the WebTable class and for the setter and getter property ...

Get Selenium Testing Tools Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.