如何在 Python 中将 PhantomJS 与 Selenium 结合使用?

DDD
发布: 2024-11-20 15:03:15
原创
599 人浏览过

How to Use PhantomJS with Selenium in Python?

如何在 Python 中使用 PhantomJS

您可以在 Selenium 的帮助下在 Python 中使用 PhantomJS。首先,您需要全局安装 NodeJS 和 phantomjs-prebuilt:

npm -g install phantomjs-prebuilt
登录后复制

安装后,您可以设置 PhantomJS 以用于:

from selenium import webdriver

driver = webdriver.PhantomJS(executable_path='/path/to/phantomjs')
driver.set_window_size(1024, 768)
driver.get('https://google.com/')
登录后复制

执行此代码将配置PhantomJS 具有自定义窗口大小并将其导航到指定的 URL。

如果 PhantomJS 添加到您的系统路径,您可以简化代码:

driver = webdriver.PhantomJS()
登录后复制

如果设置不正确,您需要提供 PhantomJS 可执行文件的确切路径,如前所示。

此处是进一步的参考探索:

  • http://selenium-python.readthedocs.io/
  • Stack Overflow:如何在 python webdriver 中为 phantomjs/ghostdriver 设置代理?
  • DZone:Python 测试:PhantomJS 与 Selenium

以上是如何在 Python 中将 PhantomJS 与 Selenium 结合使用?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板