Chromedriver とデフォルト以外のプロファイルを使用して Chrome を読み込もうとしています。
私はこのpythonコードを使用しています:
opt = webdriver.ChromeOptions()
chromedriver = r"C:/chromedriver/chromedriver.exe"
os.environ["webdriver.chrome.driver"] = chromedriver
opt.add_argument(r"user-data-dir=C:\Users\user\AppData\Local\Google\Chrome\User Data\Default_Selenium")
driver = webdriver.Chrome(opt)
しかし、私は次のエラーが発生しています:
Traceback (most recent call last):
File "C:\Users\user\workspace\dd\src\start.py", line 29, in <module>
main()
File "C:\Users\user\workspace\dd\src\start.py", line 20, in main
driver = webdriver.Chrome(opt)
File "C:\Python27\Lib\site-packages\selenium-2.43.0-py2.7.egg\selenium\webdriver\chrome\webdriver.py", line 59, in __init__
self.service.start()
File "C:\Python27\Lib\site-packages\selenium-2.43.0-py2.7.egg\selenium\webdriver\chrome\service.py", line 68, in start
and read up at http://code.google.com/p/selenium/wiki/ChromeDriver")
selenium.common.exceptions.WebDriverException: Message: 'ChromeDriver executable needs to be available in the path. Please download from http://chromedriver.storage.googleapis.com/index.html and read up at http://code.google.com/p/selenium/wiki/ChromeDriver'
私は何を間違っていますか?