Sha256: 770c0857c4fce4f7a1bc9524e2e0070aa7b7d14d08b386b5a0b3fbd83a7b8dd0

Contents?: true

Size: 1.45 KB

Versions: 10

Compression:

Stored size: 1.45 KB

Contents

Feature: Handling labels with page object

  In order to interact with labels,
  Testers will need to access the element
  and the ability to interrogate

  Background:
    Given I am on the static elements page

  Scenario: Getting the text from a label
    When I get the text from the label
    Then the text should be "page-object is the best!"

  Scenario: Getting the label element
    When I retrieve the label element
    Then I should know it exists
    And I should know it is visible

  Scenario Outline: Locating labels on the page
    When I search for the label by "<search_by>"
    Then the text should be "page-object is the best!"

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

  @selenium_only
  Scenario Outline: Locating labels on the page
    When I search for the label by "<search_by>"
    Then the text should be "page-object is the best!"

  Scenarios:
    | search_by |
    | css       |

  Scenario Outline: Locating labels using multiple parameters
    When I search for the label by "<param1>" and "<param2>"
    Then the text should be "page-object is the best!"

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

  Scenario: Finding a label dynamically
    When I get the text from a label while the script is executing
    Then I should see that the label exists
    And the text should be "page-object is the best!"

Version data entries

10 entries across 10 versions & 1 rubygems

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