silverstripe-userforms/tests/behat/features/next-form-step.feature

40 lines
2.1 KiB
Gherkin

@assets @retry
Feature: Next form step for userforms
As a website user
I want to click to the next form step button to see the next form step
Background:
Given a userform with a hidden form step "My userform"
Scenario: Next step button does not navigate to hidden form steps
When I go to "/my-userform"
And I wait for 2 seconds
And the ".progress-title" element should contain "EditableFormStep_01"
When I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_03"
And I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_04"
And I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_07"
And I click on the ".step-button-prev" element
Then the ".progress-title" element should contain "EditableFormStep_04"
And I fill in "abc" for "EditableTextField_04"
And I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_05"
And I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_06"
And I click on the ".step-button-prev" element
Then the ".progress-title" element should contain "EditableFormStep_05"
And I click on the ".step-button-prev" element
Then the ".progress-title" element should contain "EditableFormStep_04"
And I fill in "" for "EditableTextField_04"
And I click on the ".step-button-prev" element
Then the ".progress-title" element should contain "EditableFormStep_03"
When I click on the ".step-button-prev" element
Then the ".progress-title" element should contain "EditableFormStep_01"
And I fill in "abc" for "EditableTextField_01"
And I click on the ".step-button-next" element
Then the ".progress-title" element should contain "EditableFormStep_02"
# prevent the 'form has unsaved changes' alrt
When I click on the ".step-button-prev" element
And I fill in "" for "EditableTextField_01"