Sha256: d642fd49b06f183202910ce31f064ea8c90a71a65994e43a64510860bd30c688

Contents?: true

Size: 980 Bytes

Versions: 16

Compression:

Stored size: 980 Bytes

Contents

Feature: Paragraph

  Background:
    Given I am on the static elements page

  Scenario: Getting the text from a paragraph
    When I get the text from the paragraph
    Then the text should be "Static Elements Page"

  Scenario Outline: Locating paragraphs on the page
    When I search for the paragraph by "<search_by>"
    Then the text should be "Static Elements Page"

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

  Scenario Outline: Locating paragraphs using multiple parameters
    When I search for the paragraph by "<param1>" and "<param2>"
    Then the text should be "Static Elements Page"

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

  Scenario: Finding a paragraph dynamically
    When I get the text from a paragraph while the script is executing
    Then I should see that the paragraph exists
    And the text should be "Static Elements Page"

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
page-object-0.7.5.1 features/paragraph.feature
page-object-0.7.5 features/paragraph.feature
page-object-0.7.4 features/paragraph.feature
page-object-0.7.3 features/paragraph.feature
page-object-0.7.2 features/paragraph.feature
page-object-0.7.1 features/paragraph.feature
page-object-0.7.0 features/paragraph.feature
page-object-0.6.9 features/paragraph.feature
page-object-0.6.8 features/paragraph.feature
page-object-0.6.7 features/paragraph.feature
page-object-0.6.6 features/paragraph.feature
page-object-0.6.5 features/paragraph.feature
page-object-0.6.4 features/paragraph.feature
page-object-0.6.3 features/paragraph.feature
page-object-0.6.2 features/paragraph.feature
page-object-0.6.1 features/paragraph.feature