class RAutomation::Adapter::MsUia::Cell
Attributes
column[R]
index[R]
row[R]
search_information[R]
Public Class Methods
new(window, locators)
click to toggle source
# File lib/rautomation/adapter/ms_uia/table.rb, line 8 def initialize(window, locators) @search_information = window.search_information @locators = extract(locators) @row = window.row @column = @locators[:index] || 0 end
Public Instance Methods
exists?()
click to toggle source
# File lib/rautomation/adapter/ms_uia/table.rb, line 15 def exists? UiaDll::table_coordinate_valid? search_information, row, column end
value()
click to toggle source
# File lib/rautomation/adapter/ms_uia/table.rb, line 19 def value UiaDll::table_value_at search_information, row, column end
Also aliased as: text