From 84eb9472068a5b078c74b93062c5e98139c499f1 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 30 Oct 2023 10:14:21 +0100 Subject: [PATCH] tests - add geckodriver log file for ui tests --- tests/ui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/main.py b/tests/ui/main.py index 4f70bce3..19b4cad4 100644 --- a/tests/ui/main.py +++ b/tests/ui/main.py @@ -167,7 +167,7 @@ driver_func = partial(webdriver.Firefox, options=firefox_options) if TEST_TYPE == "dev": driver_func = partial( webdriver.Firefox, - service=Service(Service(executable_path="./geckodriver" if "geckodriver" in listdir(Path.cwd()) else "/usr/local/bin/geckodriver")), + service=Service(Service(executable_path="./geckodriver" if "geckodriver" in listdir(Path.cwd()) else "/usr/local/bin/geckodriver", log_output="./geckodriver.log")), options=firefox_options, )