tests - add geckodriver log file for ui tests

This commit is contained in:
florian 2023-10-30 10:14:21 +01:00
parent 40e118a712
commit 84eb947206
No known key found for this signature in database
GPG Key ID: 93EE47CC3D061500
1 changed files with 1 additions and 1 deletions

View File

@ -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,
)