資源簡介
代碼片段和文件信息
#!/usr/bin/env?python
#?-*-?coding:utf-8?-*-
from?selenium?import?webdriver
from?selenium.webdriver.common.proxy?import?Proxy?ProxyType
options?=?webdriver.ChromeOptions()
#?tell?selenium?to?use?the?dev?channel?version?of?chrome
#?NOTE:?only?do?this?if?you?have?a?good?reason?to
#?options.binary_location?=?‘/usr/bin/google-chrome-unstable‘??#?path?to?google?Chrome?bin
options.add_argument(‘headless‘)
#?set?the?window?size
options.add_argument(‘window-size=1200x600‘)
#?with?proxy
proxy_url?=?‘ip:port‘
proxy?=?Proxy({
????‘proxyType‘:?ProxyType.MANUAL
????‘httpProxy‘:?proxy_url
????‘sslProxy‘:?proxy_url??#?需要信任代理服務器CA證書
})
desired_capabilities?=?options.to_capabilities()
proxy.add_to_capabilities(desired_capabilities)
#?initialize?the?driver
#?driver?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????34821??2018-06-09?09:31??baidu_index.png
?????文件???????17493??2018-06-09?09:31??baidu_main-page.png
?????文件??????105231??2018-06-09?09:31??search-result.png
?????文件????????1743??2018-06-09?09:31??PythonApplication1.py
評論
共有 條評論