From 82d95b9b55876838fd2d3f5d125cca7c7d83a2a0 Mon Sep 17 00:00:00 2001 From: amit3200 Date: Fri, 14 Jun 2024 20:09:37 +0530 Subject: [PATCH] Updating Headless --- tests/test_screenshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_screenshot.py b/tests/test_screenshot.py index 3ea0c21..561803f 100644 --- a/tests/test_screenshot.py +++ b/tests/test_screenshot.py @@ -97,7 +97,7 @@ def setUpClass(cls): cls.p = sync_playwright().start() # Launch the browser cls.browser = cls.p.chromium.launch( - headless=False + headless=True ) # Set headless=True if you don't want to see the browser context = cls.browser.new_context() cls.page = context.new_page()