Sha256: 7deb55e445cac93bd541bf1ae01ac45dfc70931391491ea16957f6f31741d792

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

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 its' value should equal that file

  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     |
    | label     |

  @selenium_only
  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

  Scenarios:
    | search_by |
    | css       |

  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  |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 features/file_field.feature
meeane-page-object-0.1.8 features/file_field.feature