使用具有不同IP地址的selenium webdriver python打开URL(使用某些IP地址打开URL,更改IP地址并再次在Chrome中打开)

时间:2019-06-04 11:45:53

标签: python selenium google-chrome webdriver

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")

我不知道在此应用循环。

1 个答案:

答案 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