TableElementData メソッド
Get the data from an HTML table

名前空間: Selenium
アセンブリ: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
構文
VB 使用例
Dim instance As TableElement
Dim firstRowsToSkip As Integer
Dim lastRowsToSkip As Integer
Dim map As String
Dim returnValue As Object(,)

returnValue = instance.Data(firstRowsToSkip, 
	lastRowsToSkip, map)

パラメータ

firstRowsToSkip(省略可)
型: SystemInt32
First row(s) to skip. Ex : 2 will skip the first two rows
lastRowsToSkip(省略可)
型: SystemInt32
Last row(s) to skip. Ex : 2 will skip the last two rows
map(省略可)
型: SystemString
Optional - Javascript code to scrap each cell. Default: (e)=>e.textContent.trim()

戻り値

型: Object
Excel array
参照