Sha256: 3f1aa8a9d06d638d3dc3ccc5611896bac187bdfd12e1840b564d87906ab0e00f

Contents?: true

Size: 1007 Bytes

Versions: 8

Compression:

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

  @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

8 entries across 8 versions & 1 rubygems

Version Path
page-object-0.8.6 features/file_field.feature
page-object-0.8.5 features/file_field.feature
page-object-0.8.4 features/file_field.feature
page-object-0.8.3 features/file_field.feature
page-object-0.8.2 features/file_field.feature
page-object-0.8.1 features/file_field.feature
page-object-0.8 features/file_field.feature
page-object-0.7.6 features/file_field.feature