Sha256: 331d9dfa50bfb8707834dc4381a0a328697504883a1df9e5d76d3f09215ab5ff

Contents?: true

Size: 913 Bytes

Versions: 4

Compression:

Stored size: 913 Bytes

Contents

Feature: Button
  In order to interact with buttons
  Testers will need access and interrogation ability

  
  Background:
    Given I am on the static elements page
  
  Scenario: Getting the text from a div
    When I click the button
    Then I should be on the success page
    
  Scenario: Retrieve a button element
    When I retrieve a button element
    Then I should know it exists
    And I should know it is visible

  Scenario Outline: Locating buttons on the page
    When I search for the button by "<search_by>"
    Then I should be able to click the button

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |  

  @watir_only
  Scenario Outline: Locating check boxes on Watir only
    When I search for the button by "<search_by>"
    Then I should be able to click the button

  Scenarios:
    | search_by |
    | index     |
    | text      |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.0.5 features/button.feature
page-object-0.0.4 features/button.feature
page-object-0.0.3 features/button.feature
page-object-0.0.2 features/button.feature