I need to run proxies that requires authentication on selenium in headless mode.
I think many people are aware of the answer given on this post and it does work very well honestly But only In NON Headless Mode. As extensions are no longer supported in headless mode how to set proxy with authentication in selenium chromedriver python?
Besides that method, another very good method to run proxies that works in headless mode is by using the module selenium-wire
. However, selenium-wire can only run in HTTP
. To run HTTPS
you would need to import a generated certificate into google chrome. So you cant run HTTPS
programmatically.
Is there any good options to run proxies with authentication in headless mode? I'm sure many of us are wondering the same thing.
Thanks!