Module: Symbiont::Locators
- Included in:
- Symbiont
- Defined in:
- lib/symbiont/locators.rb
Instance Method Summary collapse
- #button_object(locator) ⇒ Object
- #cell_object(locator) ⇒ Object
- #checkbox_object(locator) ⇒ Object
- #div_object(locator) ⇒ Object
- #link_object(locator) ⇒ Object
- #radio_object(locator) ⇒ Object
- #select_list_object(locator) ⇒ Object
- #span_object(locator) ⇒ Object
- #table_object(locator) ⇒ Object
- #text_field_object(locator) ⇒ Object
Instance Method Details
#button_object(locator) ⇒ Object
7 8 9 |
# File 'lib/symbiont/locators.rb', line 7 def (locator) platform.(locator) end |
#cell_object(locator) ⇒ Object
39 40 41 |
# File 'lib/symbiont/locators.rb', line 39 def cell_object(locator) platform.cell_element(locator) end |
#checkbox_object(locator) ⇒ Object
19 20 21 |
# File 'lib/symbiont/locators.rb', line 19 def checkbox_object(locator) platform.checkbox_element(locator) end |
#div_object(locator) ⇒ Object
27 28 29 |
# File 'lib/symbiont/locators.rb', line 27 def div_object(locator) platform.div_element(locator) end |
#link_object(locator) ⇒ Object
3 4 5 |
# File 'lib/symbiont/locators.rb', line 3 def link_object(locator) platform.link_element(locator) end |
#radio_object(locator) ⇒ Object
23 24 25 |
# File 'lib/symbiont/locators.rb', line 23 def radio_object(locator) platform.radio_element(locator) end |
#select_list_object(locator) ⇒ Object
15 16 17 |
# File 'lib/symbiont/locators.rb', line 15 def select_list_object(locator) platform.select_list_element(locator) end |
#span_object(locator) ⇒ Object
31 32 33 |
# File 'lib/symbiont/locators.rb', line 31 def span_object(locator) platform.span_element(locator) end |
#table_object(locator) ⇒ Object
35 36 37 |
# File 'lib/symbiont/locators.rb', line 35 def table_object(locator) platform.table_element(locator) end |
#text_field_object(locator) ⇒ Object
11 12 13 |
# File 'lib/symbiont/locators.rb', line 11 def text_field_object(locator) platform.text_field_element(locator) end |