1

I'm have a problem when using Seleniumwire. I need seleniumwire in using its proxy authentication feature. But recently, Chrome has been updated to version 116 and Seleniumwire still just supporting maximum version Chromedriver 114.

Maximum supported driver is 114 Current Seleniumwire version 5.1.0

Anyone knows when will Seleniumwire will be updated? or is there any way to use "proxy authentication" without Seleniumwire?

Thank you so much.

ZentyNhan
  • 11
  • 1

1 Answers1

0

For proxy with auth, you can use SeleniumBase:

pip install seleniumbase, then run this with python:

from seleniumbase import SB

with SB(proxy="USER:PASS@IP:PORT") as sb:
    sb.driver.get("https://whatismyip.com")
    sb.sleep(6)

If you're using undetected-chromedriver mode with that, add uc=True:

from seleniumbase import SB

with SB(uc=True, proxy="USER:PASS@IP:PORT") as sb:
    sb.driver.get("https://whatismyip.com")
    sb.sleep(6)
Michael Mintz
  • 9,007
  • 6
  • 31
  • 48