⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Discussion options

You must be logged in to vote

You never activated CDP Mode. That's done via sb.activate_cdp_mode(URL).
Auth proxies are set via this format:

  • "USER:PASS@IP:PORT" OR
  • "USER:PASS@SERVER:PORT";

The @ char should appear exactly once, separating the auth string from the server string.
The : char should appear exactly twice - once in the auth string, and once in the server string.

Full example:

from seleniumbase import SB

with SB(uc=True, proxy="USER:PASS@IP:PORT") as sb:
    url = "https://api.ipify.org/"
    sb.activate_cdp_mode(url)
    breakpoint()

This is working in the latest version of SeleniumBase.
If you're using an older version, you should upgrade to the latest version.

Replies: 2 comments 10 replies

Comment options

You must be logged in to vote
9 replies
@Hielobro
Comment options

@mdmintz
Comment options

@Hielobro
Comment options

@mdmintz
Comment options

@Hielobro
Comment options

Answer selected by mdmintz
Comment options

You must be logged in to vote
1 reply
@mdmintz
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants