selenium+Phantomjs代理设置

Posted 一只虫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+Phantomjs代理设置相关的知识,希望对你有一定的参考价值。

from selenium import webdriver
from selenium.webdriver import DesiredCapabilities
from selenium.webdriver.common.proxy import Proxy
from selenium.webdriver.common.proxy import ProxyType


def PhantomJS(ip):
proxy = Proxy(
{
‘proxyType‘: ProxyType.MANUAL,
‘httpProxy‘: ip # 代理ip和端口
}
)
desired_capabilities = DesiredCapabilities.PHANTOMJS.copy()
# 把代理ip加入到技能中
proxy.add_to_capabilities(desired_capabilities)
# PhantomJS 路径
driver = webdriver.PhantomJS(
executable_path=r"C:\Users\Administrator\AppData\Local\Programs\Python\Python36\phantomjs.exe",
desired_capabilities=desired_capabilities
)
return driver

喜欢的话点点加关注,不定期更新有用知识























以上是关于selenium+Phantomjs代理设置的主要内容,如果未能解决你的问题,请参考以下文章

phantomjs和selenium设置proxyheaders

更改 HTTP 标头 Selenium + PhantomJS

在 Python 中使用 PhantomJS 设置代理

selenium.Phantomjs设置浏览器请求头

python --selenium+phantomjs爬取动态页面广告源码

在 Selenium 版本 3.7.0 无头驱动程序 phantomjs 版本 2.1 上启用 Cookie