selenium-wire
selenium-wire copied to clipboard
502 Bad Gateway
I encountered the following error in my test. I feel very strange. I have imported ca.crt

import time
import seleniumwire.webdriver
option = seleniumwire.webdriver.ChromeOptions()
driver = seleniumwire.webdriver.Chrome(executable_path="C:\\cmd\\chromedriver.exe")
driver.get("http://www.google.com/search?q=22222222222&oq=22222222222&aqs=chrome..69i57.1448j0j7&sourceid=chrome&ie=UTF-8")
time.sleep(100000)
The console did not output any results because it was asleep
same error
same error
I switch proxy from socket5 to http ,and then it work fine
try this:
selenium_options = {
'verify_ssl': False
}
self.browser = webdriver.Firefox(
seleniumwire_options=selenium_options,
)
same error
I switch proxy from socket5 to http ,and then it work fine
You are right. Thanks.
Hi, im having the same error. Can you guys explain how you fixed it?
Hi, im having the same error. Can you guys explain how you fixed it?
My issue was that the website certificate was expired, skipping TLS validation fixed the issue for me.
Hi, im having the same error. Can you guys explain how you fixed it?
My issue was that the website certificate was expired, skipping TLS validation fixed the issue for me.
@converge I have the same issue, how did you skip TLS?