Sha256: e31731ef321f50a0e65f00c38728a2a362a8ecb1340bb29a4a2b0c03a8cc30cf

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 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!"

  Examples:
    | search_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | name      |
    | text      |
    | css       |

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

  Examples:
    | 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

4 entries across 4 versions & 1 rubygems

Version Path
druid-ts-1.2.2 features/label.feature
druid-ts-1.2.1 features/label.feature
druid-ts-1.2.0 features/label.feature
druid-ts-1.1.8 features/label.feature