From aee74ce5144d098825f6fb1b4a46b68c0af2f841 Mon Sep 17 00:00:00 2001 From: kaeff Date: Mon, 17 Aug 2015 20:45:10 +0200 Subject: 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. --- service/test/functional/features/steps/mail_list.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'service/test/functional/features/steps/mail_list.py') 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')) -- cgit v1.2.3