wkeeling / selenium-wire

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.
MIT License
1.9k stars 254 forks source link

help!! #432

Closed brasilevida closed 2 years ago

brasilevida commented 2 years ago

I first met your work on github and I want to congratulate you, you are very smart and I would like to ask for help,

I have a selenium wire code that I need to open several tabs with different proxies and I'm having some problems one of them is not secure connection another problem is that even using several alternative proxies it changes the ip of the browser but it doesn't appear as logged in the site I need.

wkeeling commented 2 years ago

Thanks for raising this.

Can you share the code you're using to open the tabs with the different proxies? Can you also let me know what OS you're using and I can suggest how to fix the secure connection warning.

brasilevida commented 2 years ago

from seleniumwire import webdriver from time import sleep import time

options0 = { 'proxy': { 'https': 'https://username:passporwd@103.78.215.58:8271', 'disable_encoding': True } } co0 = webdriver.ChromeOptions() co0 c0 = webdriver.Chrome(seleniumwire_options=options0, chrome_options=co0) c0.get("https://xx.com")

time.sleep(100)

brasilevida commented 2 years ago

windows10

wkeeling commented 2 years ago

Closing due to inactivity.