phantomjs渲染网页
Posted 北风之神0509
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phantomjs渲染网页相关的知识,希望对你有一定的参考价值。
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
dcap = dict(DesiredCapabilities.PHANTOMJS)
#dcap["phantomjs.page.settings.userAgent"] = ("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE")
dcap["phantomjs.page.settings.userAgent"] = (random.choice(agents))
dcap["phantomjs.page.settings.loadImages"] = False
#dcap["phantomjs.page.settings.disk-cache"] = True
dcap["phantomjs.page.customHeaders.Cookie"] =‘xxxxxxxxxx‘
#driver = webdriver.PhantomJS(executable_path=‘C:\\Python27\\phantomjs.exe‘, service_args=[‘--load-images=no‘],desired_capabilities=dcap) #或者把phantomjs放在任何一个是环境变量文件夹的里面。
driver = webdriver.PhantomJS(executable_path=‘/home/yangdefeng/Downloads/phantomjs-2.1.1-linux-x86_64/bin/phantomjs‘,service_args=[‘--load-images=no‘],desired_capabilities=dcap) #linux版本的需要修改phantomjs文件的权限,chmod u+x phantomjs,否则报错peimission delined
以上是关于phantomjs渲染网页的主要内容,如果未能解决你的问题,请参考以下文章
Python通过PhantomJS获取JS渲染后的网页源代码
python+selenium+PhantomJS爬取网页动态加载内容
使用phantomjs将pyecharts生成的html渲染为png