Commit 218fc7b0 by Will Daly

Merge pull request #1649 from edx/will/fix-course-dates-test

Fixed intermittent issue with course date acceptance test
parents 59225b97 12bae4b7
...@@ -179,7 +179,9 @@ def verify_date_or_time(css, date_or_time): ...@@ -179,7 +179,9 @@ def verify_date_or_time(css, date_or_time):
""" """
Verifies date or time field. Verifies date or time field.
""" """
assert_equal(date_or_time, world.css_value(css)) # We need to wait for JavaScript to fill in the field, so we use
# css_has_value(), which first checks that the field is not blank
assert_true(world.css_has_value(css, date_or_time))
@step('I do not see the changes') @step('I do not see the changes')
......
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