from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--proxy-server=125.62.213.229:82')
browser = webdriver.Chrome(executable_path='F:\Drivers\ChromeDriver\chromedriver.exe', chrome_options=options)
browser.get("http://www.whatismyipaddress.com")
我不知道在此应用循环。
答案 0 :(得分:0)
使用.format替代。
ip=['125.62.213.229:82'] # add others here.
for i in ip:
options.add_argument(('--proxy-server={0}').format(i))
#rest of your code