diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-09-11 13:42:48 +0200 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-09-11 13:42:48 +0200 |
commit | 2e90a6f3e0ed73d8c3d4eaf58f57dd14fddc806d (patch) | |
tree | f53cb4f03cc6a29a8494e55507a67623fbeea203 /service/test/functional | |
parent | 4f9701be727752db98329b7baec3375af10142a9 (diff) |
Attempt to get side navigation a little bit more stable
- Issue #456
- Only temporary workaround to keep tests green while searching
for a proper solution
Diffstat (limited to 'service/test/functional')
-rw-r--r-- | service/test/functional/features/steps/tag_list.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/service/test/functional/features/steps/tag_list.py b/service/test/functional/features/steps/tag_list.py index b139ce0c..ff7f848d 100644 --- a/service/test/functional/features/steps/tag_list.py +++ b/service/test/functional/features/steps/tag_list.py @@ -39,6 +39,8 @@ def impl(context, tag): wait_for_user_alert_to_disapear(context) expand_side_nav(context) + time.sleep(.5) # need to find something that tells us that side nav is completely loaded + wait_until_element_is_visible_by_locator(context, (By.ID, 'tag-%s' % tag), timeout=20) e = find_element_by_id(context, 'tag-%s' % tag) |