1. 程式人生 > >利用python開啟一個代理網頁

利用python開啟一個代理網頁

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains

url = 'http://www.baidu.com'
chromeOptions = webdriver.ChromeOptions()
dailiip = '--proxy-server=http://52.67.126.170:3129'    # 代理ip的ip及其埠
chromeOptions.add_argument(dailiip)
driver_path = 'C:/Users/95/AppData/Local/Google/Chrome/Application/chromedriver.exe'
driver = webdriver.Chrome(executable_path=driver_path,  chrome_options=chromeOptions)
# driver = webdriver.Chrome(executable_path=driver_path)
driver.maximize_window()    # 視窗最大化
driver.get(url)

主要是用selenium來使用代理ip開啟網頁

使用注意:

1、電腦需安裝谷歌瀏覽器,並下載好chromedriver.exe;

2、python安裝好selenium庫

確認自己是否使用代理ip的辦法:最直觀的就是看你的模擬瀏覽器是否打開了www.baidu.com;第二種辦法就是開啟http://httpbin.org/ip檢視此時電腦上網使用的ip