selenium.common.exceptions.WebDriverException: Message: #39;library#39; executable may have wrong permissions for ChromeDriver(selenium.common.exceptions.WebDriverException:消息:“库可执行文件可能对 ChromeDriver 有错误的权限)
问题描述
我想使用 chrome 网络驱动程序连接到https://www.google.com".下面是代码.
I want to use the chrome webdriver to connect to "https://www.google.com". below is the code.
from selenium import webdriver
import time
driver = webdriver.Chrome("C:\Users\faisal\library")
driver.set_page_load_timeout(10)
driver.get("https://www.google.com")
driver.find_element_by_name("q").send_keys(" automation by name ")
driver.find_element_by_name("blink").click()
time.sleep(5)
driver.close()
当我运行测试时,显示以下错误消息.这是一个权限问题
When I run the test, the following error message is displayed.Its a permission problem
C:UsersfaisalPycharmProjectsfirstSeleniumTest2venvScriptspython.exe C:/Users/faisal/PycharmProjects/firstSeleniumTest2/test.py
Traceback (most recent call last):
File "C:UsersfaisalPycharmProjectsfirstSeleniumTest2venvlibsite-packagesseleniumwebdrivercommonservice.py", line 76, in start
stdin=PIPE)
File "C:Pythonlibsubprocess.py", line 709, in __init__
restore_signals, start_new_session)
File "C:Pythonlibsubprocess.py", line 997, 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/faisal/PycharmProjects/firstSeleniumTest2/test.py", line 4, in <module>
driver = webdriver.Chrome("C:\Users\faisal\library")
File "C:UsersfaisalPycharmProjectsfirstSeleniumTest2venvlibsite-packagesseleniumwebdriverchromewebdriver.py", line 68, in __init__
self.service.start()
File "C:UsersfaisalPycharmProjectsfirstSeleniumTest2venvlibsite-packagesseleniumwebdrivercommonservice.py", line 88, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'library' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
Process finished with exit code 1
推荐答案
C:Usersfaisallibrary 不是 chromedriver 的正确路径.提供 chromedriver 文件的实际路径.
C:Usersfaisallibrary is not the correct path to chromedriver. Give the actual path to your chromedriver file.
这篇关于selenium.common.exceptions.WebDriverException:消息:“库"可执行文件可能对 ChromeDriver 有错误的权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:selenium.common.exceptions.WebDriverException:消息:“库"可执行文件可能对 ChromeDriver 有错误的权限
基础教程推荐
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
