Phantomjs添加到环境变量后为什么webdriver.PhantomJS()不能用默认的path参数?

发布于 2022-09-05 08:01:27 字数 1893 浏览 27 评论 0

已经将phantomjs添加到环境变量中,按照selenium的文档里说这样就可以用webdriver.PhantomJS()的executable_path的默认参数运行了,但实测会报错.

phantomjs路径环境变量配置

from selenium import webdriver

driver = webdriver.PhantomJS()
driver.get(url)
print(driver.page_source)
driver.quit()

以下是报错内容:

Traceback (most recent call last):
File "D:Pythonlibsite-packagesseleniumwebdrivercommonservice.py", line 74, in start

stdout=self.log_file, stderr=self.log_file)

File "D:Pythonlibsubprocess.py", line 707, in init

restore_signals, start_new_session)

File "D:Pythonlibsubprocess.py", line 990, in _execute_child

startupinfo)

FileNotFoundError: [WinError 2] 系统找不到指定的文件。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "F:/ProgrammingWorkspaces/Python/BbGrade/tests/selenium_test.py", line 3, in <module>

driver = webdriver.PhantomJS()

File "D:Pythonlibsite-packagesseleniumwebdriverphantomjswebdriver.py", line 52, in init

self.service.start()

File "D:Pythonlibsite-packagesseleniumwebdrivercommonservice.py", line 81, in start

os.path.basename(self.path), self.start_error_message)

selenium.common.exceptions.WebDriverException: Message: 'phantomjs' executable needs to be in PATH

另外还有个小问题是为什么cmd中用phantomjs每一句下面都会有个undefinedcmd

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜司空 2022-09-12 08:01:27

try driver = webdriver.PhantomJS(executable_path="phantomjs.exe")

每一句下面都会有个undefined 是命令行带的,同浏览器的控制台 可忽略

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文