9使用selenium + phantomjs 模拟浏览器登录网站

Posted toloy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9使用selenium + phantomjs 模拟浏览器登录网站相关的知识,希望对你有一定的参考价值。

‘‘‘
Selenium 模拟浏览器爬取网页信息

一种是真实的浏览器,也即是在程序调用浏览器时,会打开相应的浏览器来显示,
	如:chrome,ie,safari,firefox
一种是伪浏览器,没有浏览器界面,只负责处理html,js和cookie的功能。
	如:htmlunit,phantomjs

使用示例
‘‘‘

#author toloy
from selenium import webdriver

# driver = webdriver.Chrome("C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe")
driver = webdriver.PhantomJS()
# 浏览器请求指定网址
driver.get("http://www.dfenqi.cn")
# 向浏览器指定控件中输入值
driver.find_element_by_id("username").send_keys("139xxxx5176")
driver.find_element_by_id("password").send_keys("xxxxxx")
# 单击登录按钮
driver.find_element_by_class_name("dl").click()
# 打印浏览器快照
driver.save_screenshot("abc.png")

以上是关于9使用selenium + phantomjs 模拟浏览器登录网站的主要内容,如果未能解决你的问题,请参考以下文章

selenium+phantomjs爬取动态页面数据

selenium在执行phantomjs的API并获取执行结果

使用 Selenium 的 Python PhantomJS

Selenium + Firefox到Selenium + PhantomJS [关闭]

使用 Python/PhantomJS/Selenium 滚动无限页面

C#使用Selenium+PhantomJS抓取数据