Sha256: 07794ce7a947d5b0f720ff1d6ae764ae17ac9f8993f00ad916c57f5af700b339

Contents?: true

Size: 828 Bytes

Versions: 2

Compression:

Stored size: 828 Bytes

Contents

Feature: Span

  Background:
    Given I am on the static elements page
  
  Scenario: Getting the text from a span
    When I get the text from the span
    Then the text should be "My alert"

  Scenario Outline: Locating spans on the page
    When I search for the span by "<search_by>"
    Then the text should be "My alert"

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

  @watir_only
  Scenario Outline: Locating span on Watir only
    When I search for the span by "<search_by>"
    Then the text should be "My alert"

  Scenarios:
    | search_by |
    | index     |
    
    
  @selenium_only
  Scenario Outline: Locating span on Watir only
    When I search for the span by "<search_by>"
    Then the text should be "My alert"

  Scenarios:
    | search_by |
    | name      |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.0.4 features/span.feature
page-object-0.0.3 features/span.feature