Sha256: 27a71358929520e5cb8d33e8c4e385af1308354e415c6daf979b065fc5704a1a

Contents?: true

Size: 1.57 KB

Versions: 18

Compression:

Stored size: 1.57 KB

Contents

Feature: Access

  Scenario: / (SUCCESS)
    When I am on the "/"
    Then I should see "Hello World"

  Scenario: / (FAILED)
    When I am on the "/"
    Then I should see "Hoge World"

  Scenario: /form (SUCCESS)
    When I am on the "/form"
     And type "Gongo" to "name"
     And click "Go!"
    Then I should see "Gongo"

  Scenario: /form (FAILED)
    When I am on the "/form"
     And type "Gongo" to "name"
     And click "Go!"
    Then I should see "Gengo"

  Scenario: /form (FAILED)
    When I am on the "/form"
     And type "Gongo" to "name"
     And click "Push"
    Then I should see "Gongo"

  @javascript
  Scenario: /confirm (SUCCESS) (confirm 'ok' using selenium)
    When I am on the "/confirm"
     And type "Gongo" to "name"
     And click "Go!"
     And "submit?" confirm is "ok"
    Then I should see "Gongo"

  @javascript
  Scenario: /confirm (SUCCESS) (confirm 'cancel' using selenium)
    When I am on the "/confirm"
     And type "Gongo" to "name"
     And click "Go!"
     And "submit?" confirm is "cancel"
    Then I should not see "Gongo"
     And typed "name" with "Gongo"

  @javascript
  Scenario: /confirm (FAILED) (confirm 'ok' using selenium)
    When I am on the "/confirm"
     And type "Gongo" to "name"
     And click "Go!"
     And "submit?" confirm is "ok"
    Then I should see "Gengo"

  @javascript
  Scenario: /confirm (FAILED) (confirm 'cancel' using selenium)
    When I am on the "/confirm"
     And type "Gongo" to "name"
     And click "Go!"
     And "submit?" confirm is "cancel"
    Then I should not see "Gongo"
     And typed "name" with "Gengo"

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
gnawrnip-0.8.0 example/spec/features/hello.feature
gnawrnip-0.7.0 example/spec/features/hello.feature
gnawrnip-0.6.0 example/spec/features/hello.feature
gnawrnip-0.5.0 example/spec/features/hello.feature
gnawrnip-0.4.0 example/spec/features/hello.feature
gnawrnip-0.3.2 example/spec/features/hello.feature
gnawrnip-0.3.1 example/spec/features/hello.feature
gnawrnip-0.3.0 example/spec/features/hello.feature
gnawrnip-0.2.5 example/spec/features/hello.feature
gnawrnip-0.2.4 example/spec/features/hello.feature
gnawrnip-0.2.3 example/spec/features/hello.feature
gnawrnip-0.2.2 example/spec/features/hello.feature
gnawrnip-0.2.1 example/spec/features/hello.feature
gnawrnip-0.2.0 example/spec/features/hello.feature
gnawrnip-0.1.3 example/spec/features/hello.feature
gnawrnip-0.1.2 example/spec/features/hello.feature
gnawrnip-0.1.1 example/spec/features/hello.feature
gnawrnip-0.1.0 example/spec/features/hello.feature