From e1948444c038ed302694fb408667aca41460247c Mon Sep 17 00:00:00 2001 From: Nico Schedel Date: Wed, 19 Feb 2020 12:23:17 +0100 Subject: [PATCH] TT#70901 selenium: remove page load timeout - removed page load timeout setting when creating webdriver. caused issues when navigating in ngcp-panel Change-Id: I973f5518b941809c9044f6cc7daad5e042b46763 --- t/selenium/functions/Functions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/t/selenium/functions/Functions.py b/t/selenium/functions/Functions.py index 5ecd644f..148a9c8c 100644 --- a/t/selenium/functions/Functions.py +++ b/t/selenium/functions/Functions.py @@ -50,5 +50,4 @@ def create_driver(): capabilities=caps, firefox_profile=profile, service_log_path='/dev/null', ) driver.implicitly_wait(10) - driver.set_page_load_timeout(10) return driver