Sha256: 77f4d4242657f3afdfcd701b45bf4036598b1dfb17be4c2f910b571b43494184

Contents?: true

Size: 941 Bytes

Versions: 2

Compression:

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
druid-ts-1.1.1 features/paragraph.feature
druid-ts-1.1.0 features/paragraph.feature