美文网首页我爱编程
centos 7安装phantomjs

centos 7安装phantomjs

作者: lilith买买买 | 来源:发表于2018-03-28 14:40 被阅读366次

官网:http://phantomjs.org/

wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2

yum install bzip2 # 安装bzip2

tar -jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2

mv phantomjs-2.1.1-linux-x86_64 /usr/local/src/phantomjs

ln -sf /usr/local/src/phantomjs/bin/phantomjs /usr/local/bin/phantomjs

yum install fontconfig freetype2

phantomjs -v # 测试版本号

简单的python selenium 运用

from selenium import webdriver
driver=webdriver.PhantomJS(executable_path='/usr/local/bin/phantomjs')
driver.get('')
driver.find_element_by_id("").clear()
driver.find_element_by_id("").send_keys('')
driver.find_element_by_xpath("").click()

相关文章

网友评论

    本文标题:centos 7安装phantomjs

    本文链接:https://www.haomeiwen.com/subject/fxnycftx.html