13 lines
480 B
Gherkin
13 lines
480 B
Gherkin
Feature: A user can submit feedback
|
|
|
|
@javascript
|
|
Scenario: A user submits feedback
|
|
Given I am signed in as a user
|
|
And the user is on the homepage
|
|
When the user opens the side menu
|
|
And the user clicks on the about link in the side menu
|
|
And the user fills in the feedback field
|
|
And the user clicks on the submit feedback button
|
|
Then the user should see the feedback submitted message
|
|
And a user feedback should be created containing the feedback
|