From a52765d2ca1fd2a562ad13f05756261e38315f44 Mon Sep 17 00:00:00 2001 From: Vangelis Banos Date: Tue, 12 Nov 2024 21:59:49 +0200 Subject: [PATCH] Disable automatic http to https transformation Chrome 130 automatically converts http to https even if the target URL is http. We disable this behavior because some target sites simply don't have https. --- brozzler/chrome.py | 1 + 1 file changed, 1 insertion(+) diff --git a/brozzler/chrome.py b/brozzler/chrome.py index a83632b..6194a1a 100644 --- a/brozzler/chrome.py +++ b/brozzler/chrome.py @@ -199,6 +199,7 @@ class Chrome: "--disable-first-run-ui", "--no-first-run", "--homepage=about:blank", + "--disable-features=HttpsUpgrades", "--disable-direct-npapi-requests", "--disable-web-security", "--disable-notifications",