Module: GxtWidgets::Platforms::SeleniumWebDriver::GxtGridRow

Includes:
PageObject::Platforms::SeleniumWebDriver::TableRow
Included in:
GxtGridHeaderRow
Defined in:
lib/gxt-widgets/platforms/selenium_webdriver/gxt_grid_row.rb

Instance Method Summary collapse

Instance Method Details

#find_index_by_title(title) ⇒ Object



8
9
10
11
# File 'lib/gxt-widgets/platforms/selenium_webdriver/gxt_grid_row.rb', line 8

def find_index_by_title(title)
  first_row = @container.first_row
  first_row.find_index {|column| column.text.include? title }
end