Commit 7796ece7 by Ben Patterson

Merge pull request #4591 from edx/benp/fix-attach-file

Fix false positive test in cms acceptance, harden attach_file helper.
parents 2848f7ab 47b8d072
......@@ -345,6 +345,7 @@ def get_codemirror_value(index=0, find_prefix="$"):
def attach_file(filename, sub_path):
path = os.path.join(TEST_ROOT, sub_path, filename)
world.browser.execute_script("$('input.file-input').css('display', 'block')")
assert_true(os.path.exists(path))
world.browser.attach_file('file', os.path.abspath(path))
......
......@@ -141,7 +141,7 @@ def click_upload_button(_step):
@step('I upload a new course image$')
def upload_new_course_image(_step):
upload_file('image.jpg')
upload_file('image.jpg', sub_path="uploads")
@step('I should see the new course image$')
......
0
00:00:00,100 --> 00:00:02,000
Привіт, edX вітає вас.
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