Sha256: 3a3c867f8b2196d995b613cec72394f8e9b36f9e5395d39262ff1396b1c6e3de

Contents?: true

Size: 1006 Bytes

Versions: 4

Compression:

Stored size: 1006 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      |
    | 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   |
    | 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

4 entries across 4 versions & 1 rubygems

Version Path
druid-ts-1.2.2 features/paragraph.feature
druid-ts-1.2.1 features/paragraph.feature
druid-ts-1.2.0 features/paragraph.feature
druid-ts-1.1.8 features/paragraph.feature