From 27c55dd19f019f3a9b3d0d2a170e2b487f4116d0 Mon Sep 17 00:00:00 2001 From: Ojus Sharma <112976298+ojusharma@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:22:04 -0700 Subject: [PATCH] Remove headless running - Got rid of headless to see if Google chrome is launched during testing --- Django/communicado/pages/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Django/communicado/pages/tests.py b/Django/communicado/pages/tests.py index d7f13bf1..5b007dc1 100644 --- a/Django/communicado/pages/tests.py +++ b/Django/communicado/pages/tests.py @@ -13,7 +13,6 @@ class SeleniumTests(LiveServerTestCase): def setUpClass(cls): super().setUpClass() cls.chrome_options = Options() - cls.chrome_options.add_argument("--headless") # Run Chrome in headless mode cls.driver = webdriver.Chrome(options=cls.chrome_options) @classmethod