Method: Selenium::Client::GeneratedDriver#get_table

Defined in:
lib/selenium/client/legacy_driver.rb

#get_table(tableCellAddress) ⇒ Object

Gets the text from a cell of a table. The cellAddress syntax tableLocator.row.column, where row and column start at 0.

‘tableCellAddress’ is a cell address, e.g. “foo.1.4”



981
982
983
# File 'lib/selenium/client/legacy_driver.rb', line 981

def get_table(tableCellAddress)
    return string_command("getTable", [tableCellAddress,])
end