tests - set trace verbosity for geckodriver logs

This commit is contained in:
florian 2023-10-30 11:09:27 +01:00
parent a7c343369d
commit 4fbd974d2f
No known key found for this signature in database
GPG key ID: 93EE47CC3D061500

View file

@ -47,6 +47,7 @@ TEST_TYPE = getenv("TEST_TYPE", "docker")
firefox_options = Options() firefox_options = Options()
if "geckodriver" not in listdir(Path.cwd()): if "geckodriver" not in listdir(Path.cwd()):
firefox_options.add_argument("--headless") firefox_options.add_argument("--headless")
firefox_options.log.level = "trace"
print("Starting Firefox ...", flush=True) print("Starting Firefox ...", flush=True)