From e630df5a588f0aaa3d50bbf98d6e5bae1e81cdac Mon Sep 17 00:00:00 2001 From: Conengmo <33519926+Conengmo@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:17:07 +0200 Subject: [PATCH] use new chrome headless mode --- tests/selenium/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/selenium/conftest.py b/tests/selenium/conftest.py index 15998115e..f6cf67aee 100644 --- a/tests/selenium/conftest.py +++ b/tests/selenium/conftest.py @@ -23,7 +23,7 @@ def __init__(self): options.add_argument("--no-sandbox") options.add_argument("--disable-dev-shm-usage") options.add_argument("--disable-gpu") - options.add_argument("--headless") + options.add_argument("--headless=new") options.add_argument("--window-size=1024,768") super().__init__(options=options)