Feature: Answer problems As a student in an edX course In order to test my understanding of the material I want to answer problems Scenario: I can answer a problem correctly Given External graders respond "correct" And I am viewing a "" problem When I answer a "" problem "correctly" Then My "" answer is marked "correct" And The "" problem displays a "correct" answer Examples: | ProblemType | | drop down | | multiple choice | | checkbox | | radio | | string | | numerical | | formula | | script | | code | Scenario: I can answer a problem incorrectly Given External graders respond "incorrect" And I am viewing a "" problem When I answer a "" problem "incorrectly" Then My "" answer is marked "incorrect" And The "" problem displays a "incorrect" answer Examples: | ProblemType | | drop down | | multiple choice | | checkbox | | radio | | string | | numerical | | formula | | script | | code | Scenario: I can submit a blank answer Given I am viewing a "" problem When I check a problem Then My "" answer is marked "incorrect" And The "" problem displays a "blank" answer Examples: | ProblemType | | drop down | | multiple choice | | checkbox | | radio | | string | | numerical | | formula | | script | Scenario: I can reset a problem Given I am viewing a "" problem And I answer a "" problem "ly" When I reset the problem Then My "" answer is marked "unanswered" And The "" problem displays a "blank" answer Examples: | ProblemType | Correctness | | drop down | correct | | drop down | incorrect | | multiple choice | correct | | multiple choice | incorrect | | checkbox | correct | | checkbox | incorrect | | radio | correct | | radio | incorrect | | string | correct | | string | incorrect | | numerical | correct | | numerical | incorrect | | formula | correct | | formula | incorrect | | script | correct | | script | incorrect | Scenario: I can answer a problem with one attempt correctly and not reset Given I am viewing a "multiple choice" problem with "1" attempt When I answer a "multiple choice" problem "correctly" Then The "Reset" button does not appear Scenario: I can answer a problem with multiple attempts correctly and still reset the problem Given I am viewing a "multiple choice" problem with "3" attempts Then I should see "You have used 0 of 3 submissions" somewhere in the page When I answer a "multiple choice" problem "correctly" Then The "Reset" button does appear Scenario: I can view how many attempts I have left on a problem Given I am viewing a "multiple choice" problem with "3" attempts Then I should see "You have used 0 of 3 submissions" somewhere in the page When I answer a "multiple choice" problem "incorrectly" And I reset the problem Then I should see "You have used 1 of 3 submissions" somewhere in the page When I answer a "multiple choice" problem "incorrectly" And I reset the problem Then I should see "You have used 2 of 3 submissions" somewhere in the page And The "Final Check" button does appear When I answer a "multiple choice" problem "correctly" Then The "Reset" button does not appear Scenario: I can view and hide the answer if the problem has it: Given I am viewing a "numerical" that shows the answer "always" When I press the "Show Answer" button Then The "Hide Answer" button does appear And The "Show Answer" button does not appear And I should see "4.14159" somewhere in the page When I press the "Hide Answer" button Then The "Show Answer" button does appear And I should not see "4.14159" anywhere on the page