summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/mail_list.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/mail_list.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/mail_list.py')
-rw-r--r--service/test/functional/features/steps/mail_list.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/service/test/functional/features/steps/mail_list.py b/service/test/functional/features/steps/mail_list.py
index 0822cd75..2ab46bab 100644
--- a/service/test/functional/features/steps/mail_list.py
+++ b/service/test/functional/features/steps/mail_list.py
@@ -102,6 +102,8 @@ def impl(context):
context.current_mail_id = last_email().get_attribute('id')
last_email().find_element_by_tag_name('input').click()
find_element_by_id(context, 'delete-selected').click()
+ wait_for_user_alert_to_appear_and_disapear(context) # Loading
+ wait_for_user_alert_to_disapear(context) # Success message
spend_time_in_reactor()
assert 0 == len(context.browser.find_element_by_id('mail-list').find_elements_by_tag_name('li'))