引用する必要があります:「chromedriver」実行可能ファイルは、私がpycharmでセレンを使用してスクリプトを記述しようとしていたセレン - chromedriver実行可能ファイルがPATHにエラーMSGから
PATHにする必要があります。しかし、私は上記のエラーを持っています。私はすでにセレンをパイチャにリンクしています。https://gyazo.com/b5622e3165bbfd93cfa205178df79b6f - (フレッシュで最新)
私はセレンを初めて使っていますが、セレンの新しいドライバはありません。 どこに見つけてパスに追加できますか?
ところで、cmdで "chromedriver"と入力しようとしましたが、内部コマンドまたは外部コマンドとして認識されませんでした。以下に示す
エラー:
Traceback (most recent call last):
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\site-packages\selenium\webdriver\common\service.py", line 64, in start
stdout=self.log_file, stderr=self.log_file)
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\subprocess.py", line 947, in __init__
restore_signals, start_new_session)
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\subprocess.py", line 1224, in _execute_child
startupinfo)
PermissionError: [WinError 5] Adgang nægtet
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:/Users/sebastian/PycharmProjects/web/bot.py", line 10, in <module>
browser = webdriver.Chrome("C:/Users/sebastian/desktop/selenium-3.0.1")
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 62, in __init__
self.service.start()
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\site-packages\selenium\webdriver\common\service.py", line 76, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'selenium-3.0.1' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
Exception ignored in: <bound method Service.__del__ of <selenium.webdriver.chrome.service.Service object at 0x01EDEAF0>>
Traceback (most recent call last):
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\site-packages\selenium\webdriver\common\service.py", line 163, in __del__
self.stop()
File "C:\Users\sebastian\AppData\Local\Programs\Python\Python35-32\lib\site-packages\selenium\webdriver\common\service.py", line 135, in stop
if self.process is None:
AttributeError: 'Service' object has no attribute 'process'
ブラウザにはそれぞれ独自のドライバが必要です.LinuxまたはWindowsのSafariにIEはありません。 Seleniumはブラウザに "話す"ことを可能にする単なるツールです。 –
パスにchromedriverを追加した後に新しいエラーが発生しました。 問題点を確認できますか? 「許可が拒否されました。どのように私はそれに許可を与えるのですか? –
exeファイルまたは完全なパスへの完全なパスを指定しましたか? exeファイルの場所が必要です。問題がここでエラーメッセージを検索し続ける場合、私は以前誰かが同じ問題に遭遇したと確信しています。 –