Sha256: 22c4fb38aeff3facafeaa88434468fddafcada90ddafcf23a21a6185338b283b

Contents?: true

Size: 962 Bytes

Versions: 5

Compression:

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

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

  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"

    Examples:
    | param1  | param2  |
    | class   | 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

5 entries across 5 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/paragraph.feature
druid-ts-1.2.6 features/paragraph.feature
druid-ts-1.2.5 features/paragraph.feature
druid-ts-1.2.4 features/paragraph.feature
druid-ts-1.2.3 features/paragraph.feature