I am trying to use a proxy with seleniumbase but i get: You are using an unsupported command-line flag: --ignore-certificate-errors. Stability and security will suffer.(at the starting chrome page) (after opening site)Site couldnt be reached whatismyip.com took too long to respond. but the code works fine when i dont have a proxy
from seleniumbase import SB with SB(uc=True, proxy="IP:PORT") as sb: sb.sleep(10) sb.driver.get("https://whatismyip.com") sb.sleep(10)
And its not that the ip and port are invalid because im checking and making sure they work before using them
import requests proxies = {"http": "http://IP:PORT"} response = requests.get("http://ipinfo.io/json", proxies=proxies) print(response.json())
using this code, could someone help?
edit: maybe ips are different and some work for sb and some dont even if they work for requests and i just need to try with sb until i find working ones? idk