summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-08-29 02:08:37 -0400
committerKali Kaneko <kali@leap.se>2017-08-30 16:18:59 -0400
commit9f124cc66615e92814576748bc414584962ef9da (patch)
tree7f9df135fb63e32bf6e9b6d41e5f59e78ae4fbf6 /tests
parent899e3a3f0905fd90bafaa4f5652cd885831677de (diff)
[tests] increase timeout on vpn on
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/features/steps/vpn.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/functional/features/steps/vpn.py b/tests/functional/features/steps/vpn.py
index 43673597..4b83edb5 100644
--- a/tests/functional/features/steps/vpn.py
+++ b/tests/functional/features/steps/vpn.py
@@ -2,7 +2,6 @@ from behave import given, when, then
from common import (
click_button,
wait_until_button_is_visible,
- find_element_containing_text
)
from selenium.common.exceptions import TimeoutException
# For checking IP
@@ -47,7 +46,7 @@ def assert_vpn(context):
@when('I deactivate VPN')
def deactivate_vpn(context):
click_button(context, 'Turn OFF')
- wait_until_button_is_visible(context, 'Turn ON')
+ wait_until_button_is_visible(context, 'Turn ON', timeout=60)
@then('My network should be configured as before')