Sha256: 4b3e98092bdccb58707e7c210e5c9a16e1ea0d120d5188a592923aa682efaa82

Contents?: true

Size: 1006 Bytes

Versions: 16

Compression:

Stored size: 1006 Bytes

Contents

Feature: Select
  As a developer
  I want to use select fields

  Scenario: Get the values available
    Given I am on a page that has a select
    Then I should be able to get the options available of it
    
  Scenario: Select a value
    Given I am on a page that has a select
    Then I should be able to select an option on it
    And be sure that the option setted is the option selected

  Scenario: Get selected
    Given I am on a page that has a select
    And the option "Cucumber" is selected
    Then I should be able to know the option "Cucumber" is selected

  Scenario: Get selected (counter proof)
    Given I am on a page that has a select
    And the option "Cucumber" is selected
    Then I should fail when ask if the option "Rspec" is selected

  #TODO: Think a way to create a default value
  @pending 
  Scenario: Go to default or empty
    Given I am on a page that has a select
    And the option "Cucumber" is selected
    Then I should be able to go to the default option of it

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
cello-0.0.35 features/select.feature
cello-0.0.34 features/select.feature
cello-0.0.33 features/select.feature
cello-0.0.32 features/select.feature
cello-0.0.31 features/select.feature
cello-0.0.30 features/select.feature
cello-0.0.29 features/select.feature
cello-0.0.28 features/select.feature
cello-0.0.27 features/select.feature
cello-0.0.26 features/select.feature
cello-0.0.25 features/select.feature
cello-0.0.23 features/select.feature
cello-0.0.21 features/select.feature
cello-0.0.19 features/select.feature
cello-0.0.17 features/select.feature
cello-0.0.16 features/select.feature