From 4fbd974d2f52aa0083e5ac09c465ea9ec00c1343 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 30 Oct 2023 11:09:27 +0100 Subject: [PATCH] tests - set trace verbosity for geckodriver logs --- tests/ui/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ui/main.py b/tests/ui/main.py index c7d3b5c2..53ece50f 100644 --- a/tests/ui/main.py +++ b/tests/ui/main.py @@ -47,6 +47,7 @@ TEST_TYPE = getenv("TEST_TYPE", "docker") firefox_options = Options() if "geckodriver" not in listdir(Path.cwd()): firefox_options.add_argument("--headless") +firefox_options.log.level = "trace" print("Starting Firefox ...", flush=True)