-1

I used code for proxy from this answer and than I cant disable the proxy extension or remove it. I tried to find it on extensions folder in profile folder but there is no extensions installed via add.extension

The code works well and I thought I can just type use_proxy=False and the extension would not try to connect again but it tries to connect always even I launch browser without python selenium

  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jun 08 '23 at 10:13
  • I would like to remove this extension so I can launch chrome profile as usual without any code, by hands, and the browser will not try to connect to the proxy – prezene Jun 08 '23 at 10:20
  • if it would helps Only profiles I used with the proxy code not working now(trying to connect to proxy). Other profiles works as usual – prezene Jun 08 '23 at 10:37

1 Answers1

0

With the Python statement from the referenced question how to set proxy with authentication in selenium chromedriver python?

options.add_extension(os.path.join(settings.DIR, "extension_2_0.crx")) # proxy auth extension

you probably installed the Chrome extension "Proxy Auto Auth":

If this extension is active it also works when using Chrome alone. It does not need your Python script, it was just added to Chrome this way.

You can uninstall or remove the extension from Chrome, see Uninstall an extensions - Chrome Web Store Help.

hc_dev
  • 8,389
  • 1
  • 26
  • 38