Commit d96b5814 by Ben Patterson

Fix flaky lettuce test. TNL-1452

parent f73b68d6
...@@ -74,8 +74,9 @@ def see_a_problem_component(step, category): ...@@ -74,8 +74,9 @@ def see_a_problem_component(step, category):
'No problem was added to the unit.') 'No problem was added to the unit.')
problem_css = 'li.studio-xblock-wrapper div.xblock-student_view' problem_css = 'li.studio-xblock-wrapper div.xblock-student_view'
actual_text = world.css_text(problem_css) # This view presents the given problem component in uppercase. Assert that the text matches
assert_in(category.upper(), actual_text) # the component selected (in uppercase)
assert_true(world.css_contains_text(problem_css, category.upper())) # pylint: disable=no-value-for-parameter
@step(u'I add a "([^"]*)" "([^"]*)" component$') @step(u'I add a "([^"]*)" "([^"]*)" component$')
......
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