Sha256: 57bab85138b3cc3885a8b17361fdb06d33e2fb261046ef96ac605631bcf555a8

Contents?: true

Size: 1.42 KB

Versions: 10

Compression:

Stored size: 1.42 KB

Contents

Feature: Links
  In order to interact with links
  Testers will need access and interrogation ability

  Background:
    Given I am on the static elements page

  Scenario: Selecting a link
    When I select the link labeled "Google Search"
    Then the page should contain the text "Success"

  Scenario Outline: Locating links on the Page
    When I search for the link by "<search_by>"
    Then I should be able to select the link

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | link      |
    | link_text |
    | text      |
    | index     |
    | href      |
    | css       |
    | title     |

  @selenium_only
  Scenario Outline: Locating links on the Page
    When I search for the link by "<search_by>"
    Then I should be able to select the link

  Scenarios:
    | search_by |
    | css       |

  Scenario: Support for multiple parameters
    When I select a link labeled "Hello" and index "0"
    Then the page should contain the text "Success"
    Given I am on the static elements page
    When I select a link labeled "Hello" and index "1"
    Then the page should contain the text "Success"

  Scenario: Retrieve a Link
    When I retrieve a link element
    Then I should know it exists
    And I should know it is visible

  Scenario: Finding a link dynamically
    When I select a link while the script is executing
    And the page should contain the text "Success"

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
page-object-0.8.7 features/link.feature
page-object-0.8.6.1 features/link.feature
page-object-0.8.6 features/link.feature
page-object-0.8.5 features/link.feature
page-object-0.8.4 features/link.feature
page-object-0.8.3 features/link.feature
page-object-0.8.2 features/link.feature
page-object-0.8.1 features/link.feature
page-object-0.8 features/link.feature
page-object-0.7.6 features/link.feature