Commit ce5d9b93 by JonahStanley

Added the full range of help modal options

Fixed pylint violations
parent fc899ab1
...@@ -7,12 +7,25 @@ Feature: The help module should work ...@@ -7,12 +7,25 @@ Feature: The help module should work
Scenario: I can submit a problem when I am not logged in Scenario: I can submit a problem when I am not logged in
Given I visit the homepage Given I visit the homepage
When I open the help form When I open the help form
And I report a "problem" And I report a "<FeedbackType>"
Then I should see confirmation that the issue was received Then I should see confirmation that the issue was received
Examples:
| FeedbackType |
| problem |
| suggestion |
| question |
Scenario: I can submit a problem when I am logged in Scenario: I can submit a problem when I am logged in
Given I am in a course Given I am in a course
When I open the help form When I open the help form
And I report a "problem" without saying who I am And I report a "<FeedbackType>" without saying who I am
Then I should see confirmation that the issue was received Then I should see confirmation that the issue was received
Examples:
| FeedbackType |
| problem |
| suggestion |
| question |
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
from lettuce import world, step from lettuce import world, step
@step(u'I open the help form') @step(u'I open the help form')
def open_help_modal(step): def open_help_modal(step):
help_css = 'div.help-tab' help_css = 'div.help-tab'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment