summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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')