From 7cd4c632a56190be59eb6abf160e6f21cea15f2c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 25 Mar 2023 20:35:16 +0100 Subject: [PATCH] Enlarge selenium window --- src/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conftest.py b/src/conftest.py index d872886..31fa025 100644 --- a/src/conftest.py +++ b/src/conftest.py @@ -22,4 +22,5 @@ def firefox_options(firefox_options): @pytest.fixture() def selenium(selenium): selenium.implicitly_wait(3) + selenium.set_window_size(3860, 2140) return selenium