无法在含硒的皮查姆中运行基本的Py程序

问题描述 投票:1回答:1

我对编码非常陌生。尝试从过去20天开始运行以下基本行,并得到以下错误。请帮助。尝试安装卸载python,selenium和pycharm。还是同样的问题:(

我的代码:

from selenium import webdriver
browser = webdriver.Chrome(executable_path = 'C:\Program Files (x86)\Google\Chrome\Application')
browser.get('https://www.google.com')
browser.quit()

错误-

"C:\Python 3.7.6\python.exe" C:/Users/PycharmProjects/sel/sel1.py
Traceback (most recent call last):
  File "C:\Python 3.7.6\lib\site-packages\selenium\webdriver\common\service.py", line 76, in start
    stdin=PIPE)
  File "C:\Python 3.7.6\lib\subprocess.py", line 800, in __init__
    restore_signals, start_new_session)
  File "C:\Python 3.7.6\lib\subprocess.py", line 1207, in _execute_child
    startupinfo)
PermissionError: [WinError 5] Access is denied

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:/Users/PycharmProjects/sel/sel1.py", line 2, in <module>
    browser = webdriver.Chrome(executable_path = 'C:\Program Files (x86)\Google\Chrome\Application')
  File "C:\Python 3.7.6\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 73, in __init__
    self.service.start()
  File "C:\Python 3.7.6\lib\site-packages\selenium\webdriver\common\service.py", line 88, in start
    os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'Application' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home


Process finished with exit code 1

谢谢。

python selenium pycharm
1个回答
0
投票

您的可执行文件路径存在严重问题。引发的错误表明您的程序无法访问chrome驱动程序。将chrome驱动程序的位置更改为其他位置(桌面,用户目录等),并将代码中的可执行文件路径更改为放置chromedriver的新路径,应该可以。

© www.soinside.com 2019 - 2024. All rights reserved.