class PageObject::Elements::TableCell

Protected Class Methods

selenium_finders() click to toggle source
# File lib/page-object/elements/table_cell.rb, line 18
def self.selenium_finders
  super + [:text]
end
watir_finders() click to toggle source
# File lib/page-object/elements/table_cell.rb, line 14
def self.watir_finders
  super + [:text]
end

Public Instance Methods

enabled?() click to toggle source

return true if the element is enabled

# File lib/page-object/elements/table_cell.rb, line 8
def enabled?
  true
end