summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/search.py
diff options
context:
space:
mode:
authorkaeff <hi@kaeff.net>2015-08-17 20:45:10 +0200
committerkaeff <hi@kaeff.net>2015-08-17 20:56:27 +0200
commitaee74ce5144d098825f6fb1b4a46b68c0af2f841 (patch)
tree2668e33072760f7bcb339fdd739fee6130aa2b50 /service/test/functional/features/steps/search.py
parentb16bae353e40fa05b4993ef68232a9df83db370e (diff)
2 attempts against flakiness of checkboxes_and_mailboxes
1) Explicitly load inbox to avoid test fails before mail appears 2) Use "loading..." notification to check whether deleting mail has already been completed checkboxes_and_mailboxes.feature spends a lot time waiting (even if the step is already executed logically) as one can see when running tests in Firefox. This test is a good candidate for speed optimization.
Diffstat (limited to 'service/test/functional/features/steps/search.py')
-rw-r--r--service/test/functional/features/steps/search.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/service/test/functional/features/steps/search.py b/service/test/functional/features/steps/search.py
index e653c3ed..cdd7bb61 100644
--- a/service/test/functional/features/steps/search.py
+++ b/service/test/functional/features/steps/search.py
@@ -23,6 +23,7 @@ from common import *
def impl(context, search_term):
search_field = find_element_by_css_selector(context, '#search-trigger input[type="search"]')
search_field.send_keys(search_term)
+ sleep(5)
search_field.send_keys(Keys.ENTER)
sleep(1)