Feature: Elements Background: Given I am on the static elements page Scenario: Link element methods When I retrieve a link element Then I should know it exists And I should know it is visible And I should know its' text is "Google Search" And I should know it is equal to itself And I should know its' tag name is "a" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Link element methods for watir When I retrieve a link element Then I should know its' value is "" Scenario: Button element methods When I retrieve a button element Then I should know it exists And I should know it is visible And I should know its' value is "Click Me" And I should know it is equal to itself And I should know its' tag name is "input" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Button element methods for watir When I retrieve a button element Then I should know its' text is "Click Me" Scenario: Check Box element methods When I retrieve a check box element Then I should know it exists And I should know it is visible And I should know its' text is "" And I should know its' value is "1" And I should know it is equal to itself And I should know its' tag name is "input" And I should know the attribute "readonly" is false And I should be able to click it Scenario: Div element methods When I retrieve the div element Then I should know it exists And I should know it is visible And I should know its' text is "page-object rocks!" And I should know it is equal to itself And I should know its' tag name is "div" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Div element methods for watir When I retrieve the div element Then I should know its' value is "" @selenium_only Scenario: Div element methods for selenium When I retrieve the div element Then I should know its' value is nil Scenario: Radio Button element methods When I retrieve a radio button Then I should know it exists And I should know it is visible And I should know its' text is "" And I should know its' value is "Milk" And I should know it is equal to itself And I should know its' tag name is "input" And I should know the attribute "readonly" is false And I should be able to click it Scenario: Select List element methods When I retrieve a select list Then I should know it exists And I should know it is visible And I should know its' text includes "Test 1" And I should know its' value is "option1" And I should know it is equal to itself And I should know its' tag name is "select" And I should know the attribute "readonly" is false And I should be able to click it Scenario: Table element methods When I retrieve a table element Then I should know it is visible And I should know its' text includes "Data1" And I should know it is equal to itself And I should know its' tag name is "table" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Table element methods in watir When I retrieve a table element Then I should know it exists And I should know its' value is "" @selenium_only Scenario: Table element methods in selenium When I retrieve a table element Then I should know its' value is nil Scenario: Table Cell element methods When I retrieve table cell Then I should know it exists And I should know it is visible And I should know its' text includes "Data4" And I should know it is equal to itself And I should know its' tag name is "td" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Table Cell element methods in watir When I retrieve table cell Then I should know its' value is "" @selenium_only Scenario: Table Cell element methods in selenium When I retrieve table cell Then I should know its' value is nil Scenario: Text Field element methods When I retrieve a text field Then I should know it exists And I should know it is visible And I should know its' text includes "" And I should know its' value is "" And I should know it is equal to itself And I should know its' tag name is "input" And I should know the attribute "readonly" is false And I should be able to click it Scenario: Image element methods When I get the image element Then I should know it exists And I should know it is visible And I should know its' text includes "" And I should know it is equal to itself And I should know its' tag name is "img" And I should know the attribute "readonly" is false And I should be able to click it @watir_only Scenario: Image element methods in watir When I get the image element Then I should know its' value is "" @selenium_only Scenario: Image element methods in selenium When I get the image element Then I should know its' value is nil