Sha256: 05ecbeaedfe9d935e0f2a6ed528b8360a110380f9a6a2aecf7e74b3dd4046384

Contents?: true

Size: 848 Bytes

Versions: 1

Compression:

Stored size: 848 Bytes

Contents

Feature: Span

  Background:
    Given I am on the static elements page

  Scenario: Getting the text from a span
    When I get the text from the span
    Then the text should be "My alert"

  @name
  Scenario Outline: Locating spans on the page
    When I locate the span by "<locate_by>"
    Then the text should be "My alert"

    Examples:
    | locate_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | name      |

  Scenario: Retrieve a Span
    When I retrieve a span element
    Then I should know it exists
    And I should know it is visible

  @multi
  Scenario Outline: Locating span using multiple parameters
    When I search for the span by "<param1>" and "<param2>"
    Then the text should be "My alert"

    Examples:
    | param1  | param2  |
    | class   | index   |
    | name    | index   |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
druid-ts-0.0.1 features/span.feature