Class: Symbiont::WebObjects::TableCell
- Defined in:
- lib/symbiont/web_objects/table_cell.rb
Instance Attribute Summary
Attributes inherited from WebObject
Class Method Summary collapse
Instance Method Summary collapse
- #enabled? ⇒ Boolean
-
#initialize(web_object) ⇒ TableCell
constructor
A new instance of TableCell.
Methods inherited from WebObject
#==, #attribute, #clear, #click, #disabled?, #double_click, #exists?, #fire_event, #flash, #focus, #hover, #html, #id, #inspect, #parent, provide_locator_for, #scroll_into_view, selector_mapping, #send_keys, #style, #tag_name, #text, #value, #visible?, #wait_until, #when_actionable, #when_not_actionable, #when_not_visible, #when_visible
Constructor Details
#initialize(web_object) ⇒ TableCell
Returns a new instance of TableCell.
6 7 8 |
# File 'lib/symbiont/web_objects/table_cell.rb', line 6 def initialize(web_object) @web_object = web_object end |
Class Method Details
.usable_selectors ⇒ Object
14 15 16 |
# File 'lib/symbiont/web_objects/table_cell.rb', line 14 def self.usable_selectors super + [:text] end |
Instance Method Details
#enabled? ⇒ Boolean
10 11 12 |
# File 'lib/symbiont/web_objects/table_cell.rb', line 10 def enabled? true end |