-
|
with SB(proxy=proxy,uc=True, xvfb=True) as sb: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Since Chrome 142 (which removed the from seleniumbase import SB
with SB(uc=True, proxy="USER:PASS@IP:PORT", xvfb=True) as sb:
url = "https://example.com"
sb.activate_cdp_mode(url)
# ...If you don't activate CDP Mode, then you'll get an auth pop-up when visiting a website when your proxy requires auth. |
Beta Was this translation helpful? Give feedback.
Since Chrome 142 (which removed the
--load-extensionoption), proxy auth is set when activating CDP Mode now.If you don't activate CDP Mode, then you'll get an auth pop-up when visiting a website when your proxy requires auth.