爬虫——phantomJs

736次阅读
没有评论
爬虫——phantomJs

PhantomJS是一款无界面的浏览器,
驱动下载:
http://phantomjs.org/download.html
流程与selenium一致,只是改了webdriver 的浏览器类型和驱动目录,增加了截屏功能bro.save_screenshot('./1.png')

from selenium import webdriver as wd

bro = wd.PhantomJS(executable_path='./phantomjs-2.1.1-windows/bin/phantomjs') bro.get('https://www.baidu.com')

# 截屏的操作 bro.save_screenshot('./1.png') text = bro.find_element_by_id('kw') text.send_keys('人名币')

# 找到动作按钮 button = bro.find_element_by_id('su')

# 点击操作 button.click()

# 截屏的操作 bro.save_screenshot('./2.png')

bro.quit()

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:Python教程2022-10-25发表,共计550字。
新手QQ群:570568346,欢迎进群讨论 Python51学习