from selenium import webdriver chrome_options = webdriver.ChromeOptions() chrome_options.add_argument(‘--proxy-server=http://171.37.135.94:8123‘) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get(‘http://httpbin.org/ip‘) print(chrome.page_source) chrome.quit()
设置代理的话,可以使用这种方式,代码是我刚才测试过的,亲测可用
原文:https://www.cnblogs.com/zlel/p/8831118.html