Commit 4b6e2f48 by Ben Patterson

Merge pull request #8471 from edx/benp/flaky-cms-component-jun2015

Fix flaky lettuce test. TNL-1452
parents eb81e52d d96b5814
......@@ -74,8 +74,9 @@ def see_a_problem_component(step, category):
'No problem was added to the unit.')
problem_css = 'li.studio-xblock-wrapper div.xblock-student_view'
actual_text = world.css_text(problem_css)
assert_in(category.upper(), actual_text)
# This view presents the given problem component in uppercase. Assert that the text matches
# 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$')
......
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