Proxy is not working on a pc and working on another #4090
Answered
by
mdmintz
husseinhoss155
asked this question in
Q&A
|
from seleniumbase import SB PROXY = "USER:PASS@HOST:PORT" with SB(uc=True, proxy=PROXY) as sb: this same code opens on my pc with extension appearing and proxy is working |
Answered by
mdmintz
Nov 10, 2025
Replies: 2 comments
|
Note that proxy auth doesn't take effect in UC Mode until after you've activated CDP Mode (because CDP sets the proxy). Therefore, the first thing you should do when the browser launches is |
0 replies
Answer selected by
mdmintz
|
Thank you |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that proxy auth doesn't take effect in UC Mode until after you've activated CDP Mode (because CDP sets the proxy). Therefore, the first thing you should do when the browser launches is
activate_cdp_mode(), otherwise you'll hit an auth pop-up when going to any site before that.