Sha256: 01743be7cf56c9b18191664a4a1ed0283df69cb0e3581d225e52b463d2b04ce1

Contents?: true

Size: 933 Bytes

Versions: 12

Compression:

Stored size: 933 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 the text should be "Static Elements Page"

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
page-object-0.6 features/paragraph.feature
page-object-0.5.5 features/paragraph.feature
page-object-0.5.4 features/paragraph.feature
page-object-0.5.3 features/paragraph.feature
page-object-0.5.2 features/paragraph.feature
page-object-0.5.1 features/paragraph.feature
page-object-0.5.0 features/paragraph.feature
page-object-0.4.4 features/paragraph.feature
page-object-0.4.3 features/paragraph.feature
page-object-0.4.2 features/paragraph.feature
page-object-0.4.1 features/paragraph.feature
page-object-0.4.0 features/paragraph.feature