Sha256: b18906518b86b00fcd21bc9cb28135b589ac75d0f552dd8cc4dfd617adac7832

Contents?: true

Size: 1.47 KB

Versions: 16

Compression:

Stored size: 1.47 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     |

  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"

  Scenario: Getting the href for a link
    When I get the href for the link
    Then I should know it was "success.html"

  Scenario: Locating a link using a partial href
    When I get the link using the href success
    Then I should be able to click the link

Version data entries

16 entries across 16 versions & 4 rubygems

Version Path
page-object-1.2.0 features/link.feature
page-object-1.1.1 features/link.feature
page_object-1.1.3 features/link.feature
page_object-1.1.2 features/link.feature
page_object-1.1.1 features/link.feature
page-object-1.1.0 features/link.feature
page-object-lds-0.0.14 features/link.feature
page-object-lds-0.0.13 features/link.feature
page-object-lds-0.0.12 features/link.feature
page-object-lds-0.0.11 features/link.feature
page-object-lds-0.0.1 features/link.feature
page-object-1.0.3 features/link.feature
meeane-page-object-0.1.11 features/link.feature
page-object-1.0.2 features/link.feature
page-object-1.0.1 features/link.feature
page-object-1.0 features/link.feature