如何在 Python 中將 PhantomJS 與 Selenium 結合使用?

DDD
發布: 2024-11-20 15:03:15
原創
598 人瀏覽過

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板