0

您好,我想尝试使用 PhantomJS 加载网站

from selenium import webdriver
driver = webdriver.PhantomJS(executable_path="/Users/martinzuffa/phantomjs-2.5.0-beta-macos/bin/phantomjs")
driver.get("www.google.com")
print(driver.page_source)

这是错误

0-beta-macos/bin/phantomjs 意外退出。状态码是:-9

4

1 回答 1

0

PhantomJS 在Selenium 3.8.1中被弃用

* PhantomJS 现已弃用,请在无头模式下使用 Chrome 或 Firefox

此外,Selenium 4.1.0包不再包含PhantomJS模块:

Python模块


解决方案

作为替代方案,您必须使用以下任一方法:

于 2021-12-21T15:37:26.053 回答