diff --git a/tests/activation_tests.py b/tests/activation_tests.py index 583dd06e..dde06f2d 100755 --- a/tests/activation_tests.py +++ b/tests/activation_tests.py @@ -141,7 +141,9 @@ def test_activation(IP, nc_port, admin_port, options, webdriver_exec_path=None, # ncp-web test.new("ncp-web") - # driver = webdriver.Firefox(options=options, **driver_kwargs) + if webdriver_exec_path is not None: + driver_kwargs['service'] = Service(webdriver_exec_path) + driver = webdriver.Firefox(options=options, **driver_kwargs) driver.implicitly_wait(30) try: driver.get(f"https://ncp:{urllib.parse.quote_plus(ncp_pass)}@{IP}:{admin_port}")