TableElement Class
Web element Table
Inheritance Hierarchy
SystemObject
  SeleniumTableElement

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As TableElement

The TableElement type exposes the following members.

Methods
  NameDescription
Public methodData
Get the data from an HTML table
Public methodCode exampleToExcel
Copies the values to Excel. The target can be an address, a worksheet or a range.
Top
Examples
Select an element by text
data = driver.FindElementById("tbl").AsTable.Data
driver.FindElementById("tbl").AsTable.ToExcel [Sheet1!A1]
See Also