Commit 20ea2874 by Jay Zoldak

Speed up problems feature tests

parent f3036490
...@@ -144,7 +144,7 @@ PROBLEM_DICT = { ...@@ -144,7 +144,7 @@ PROBLEM_DICT = {
] ]
}, },
'correct': ['section.choicetextgroup_correct'], 'correct': ['section.choicetextgroup_correct'],
'incorrect': ['span.incorrect', 'section.choicetextgroup_incorrect'], 'incorrect': ['section.choicetextgroup_incorrect', 'span.incorrect'],
'unanswered': ['span.unanswered']}, 'unanswered': ['span.unanswered']},
'checkbox_text': { 'checkbox_text': {
...@@ -242,7 +242,7 @@ def answer_problem(problem_type, correctness): ...@@ -242,7 +242,7 @@ def answer_problem(problem_type, correctness):
def problem_has_answer(problem_type, answer_class): def problem_has_answer(problem_type, answer_class):
if problem_type == "drop down": if problem_type == "drop down":
if answer_class == 'blank': if answer_class == 'blank':
assert world.browser.is_element_not_present_by_css('option[selected="true"]') assert world.is_css_not_present('option[selected="true"]')
else: else:
actual = world.browser.find_by_css('option[selected="true"]').value actual = world.browser.find_by_css('option[selected="true"]').value
expected = 'Option 2' if answer_class == 'correct' else 'Option 3' expected = 'Option 2' if answer_class == 'correct' else 'Option 3'
......
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