Sha256: 0c32bfec9938dda39a8921a8f405eb9979de87efb3b76de73141ed07b81fd6e3

Contents?: true

Size: 1013 Bytes

Versions: 6

Compression:

Stored size: 1013 Bytes

Contents

Feature: File Field

  Background:
    Given I am on the static elements page

  Scenario: Setting the value on the file Field
    When I set the file field to the step definition file
    Then This filefield element should exist

  Scenario Outline: Locating file fields on the Page
    When I search for the file field by "<search_by>"
    Then I should be able to set the file field

    Examples:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | title     |
    | index     |

  Scenario Outline: Locating file fields using multiple parameters
    When I search for the file field by "<param1>" and "<param2>"
    Then I should be able to set the file field

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

  @locator
  Scenario: Finding a file field dynamically
    When I locate a file field while the script is executing
    Then I should see that the file field element exists
    And The file field should exist

Version data entries

6 entries across 6 versions & 1 rubygems

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