From b134447f50bbe024489e67cccaff14b635ee9018 Mon Sep 17 00:00:00 2001 From: Andrei Medvedev <43909845+Andmedoctopus@users.noreply.github.com> Date: Wed, 15 Nov 2023 17:33:21 +0200 Subject: [PATCH] Make User Agent None by default (#1215) --- splinter/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splinter/config.py b/splinter/config.py index a955bf4af..942eb2f20 100644 --- a/splinter/config.py +++ b/splinter/config.py @@ -49,4 +49,4 @@ class Config: fullscreen: Optional[bool] = False headless: Optional[bool] = False incognito: Optional[bool] = False - user_agent: Optional[str] = "" + user_agent: Optional[str] = None