Sha256: 319e56adb8945b7009622be1f9320382358dc4fd2b2a5b70041326ee0a6b0392

Contents?: true

Size: 988 Bytes

Versions: 6

Compression:

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

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

6 entries across 6 versions & 1 rubygems

Version Path
druid-ts-1.1.7 features/paragraph.feature
druid-ts-1.1.6 features/paragraph.feature
druid-ts-1.1.5 features/paragraph.feature
druid-ts-1.1.4 features/paragraph.feature
druid-ts-1.1.3 features/paragraph.feature
druid-ts-1.1.2 features/paragraph.feature