From e9e606bca51e07b7d56bea6e86d225517d8e06fa Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 28 Jan 2025 23:53:12 +0200 Subject: [PATCH] feat(StealthyFetcher): Disable Cross-Origin-Opener-Policy by default for async_fetch This allows elements in cross-origin iframes, such as the Turnstile checkbox, to be clicked. . Forgot to add it with the other commit --- scrapling/engines/camo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrapling/engines/camo.py b/scrapling/engines/camo.py index 1a550c2..af3c61c 100644 --- a/scrapling/engines/camo.py +++ b/scrapling/engines/camo.py @@ -175,6 +175,7 @@ class CamoufoxEngine: async with AsyncCamoufox( geoip=self.geoip, proxy=self.proxy, + disable_coop=True, addons=self.addons, exclude_addons=addons, headless=self.headless,