前提・実現したいこと
ここに質問の内容を詳しく書いてください。
seleniumとchomedriverで自動的に起動するもの作っているのですが
python 〇〇.py って入力してからエラーが起きました
発生している問題・エラーメッセージ
Traceback (most recent call last): File "chromedrivertest.py", line 19, in <module> driver = webdriver.Chrome('/path/to/chromedriver') # Optional argument, if not specified will search path. File "/Users/akiotokinobu/Library/Python/2.7/lib/python/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__ self.service.start() File "/Users/akiotokinobu/Library/Python/2.7/lib/python/site-packages/selenium/webdriver/common/service.py", line 83, in start os.path.basename(self.path), self.start_error_message) selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
該当のソースコード
import time from selenium import webdriver driver = webdriver.Chrome('/path/to/chromedriver') # Optional argument, if not specified will search path. driver.get('http://www.google.com/'); time.sleep(5) # Let the user actually see something! search_box = driver.find_element_by_name('q') search_box.send_keys('ChromeDriver') search_box.submit() time.sleep(5) # Let the user actually see something! driver.quit()
試したこと
brewやpipを入れ直したりしました
補足情報(FW/ツールのバージョンなど)
python2.7,selenium