From 12a7922f89dcad5f8fec4350d8ce4235d995f0c5 Mon Sep 17 00:00:00 2001 From: JonahStanley Date: Wed, 3 Jul 2013 11:00:46 -0400 Subject: [PATCH] Overzealous changing of find to click --- cms/djangoapps/contentstore/features/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/djangoapps/contentstore/features/upload.py b/cms/djangoapps/contentstore/features/upload.py index 2b70cb059a..977bad8fea 100644 --- a/cms/djangoapps/contentstore/features/upload.py +++ b/cms/djangoapps/contentstore/features/upload.py @@ -26,7 +26,7 @@ def upload_file(_step, file_name): world.css_click(upload_css) file_css = 'input.file-input' - upload = world.css_click(file_css) + upload = world.css_find(file_css) #uploading the file itself path = os.path.join(TEST_ROOT, 'uploads/', file_name) upload._element.send_keys(os.path.abspath(path))