diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-12-14 11:41:46 -0200 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-12-14 11:41:46 -0200 |
commit | 551106f184dd5ea514ea564de5bfd1de3954c2c8 (patch) | |
tree | a34d9e7b579d2cc7183180b184e4274a8feeb185 /service/test/functional/features/steps | |
parent | 2e4fdaf851da955f132a132e995bef1fdae24035 (diff) |
Increase timeout between interstitial and inbox
When testing against staging, sometimes the first login is not completed
within the default 20 seconds, so I doubled the timeout.
Diffstat (limited to 'service/test/functional/features/steps')
-rw-r--r-- | service/test/functional/features/steps/mail_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/mail_list.py b/service/test/functional/features/steps/mail_list.py index 8e1152f4..9432a4d1 100644 --- a/service/test/functional/features/steps/mail_list.py +++ b/service/test/functional/features/steps/mail_list.py @@ -91,7 +91,7 @@ def impl(context): @given('I have mails') @then(u'I have mails') def impl(context): - emails = find_elements_by_css_selector(context, '.mail-list-entry') + emails = find_elements_by_css_selector(context, '.mail-list-entry', timeout=40) assert len(emails) > 0 |