November 2012
Intermediate to advanced
326 pages
6h 41m
English
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.
Create a new Java class WebTable.java, which we will use to implement the support for table elements.
Let's implement the web table extension code with WebTable.java using the following steps:
WebTable class and for the setter and getter property ...Read now
Unlock full access