1

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' 

私は何を間違っていますか?

4

1 に答える 1

1

chromedriver実行可能ファイルは、環境変数で使用できるか、引数をPATH介して明示的に設定する必要があります。executable_pathChrome()

driver = webdriver.Chrome(executable_path=r'C:/chromedriver/chromedriver.exe',
                          chrome_options=opt)
于 2014-10-06T13:09:34.880 に答える