投稿に基づいてhereとhere私はファイルをダウンロードできるようにセレンのクロムwebdriverを使用しようとしています。ここでのコードは、これまでpythonでchrome webdriverをseleniumでダウンロードするにはどうすればいいですか?
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--disable-extensions")
chrome_options.add_experimental_option("profile.default_content_settings.popups", 0)
chrome_options.add_experimental_option("download.prompt_for_download", "false")
chrome_options.add_experimental_option("download.default_directory", "/tmp")
driver = webdriver.Chrome(chrome_options=chrome_options)
である。しかし、次のエラーでこれだけの結果は:
WebDriverException: Message: unknown error: cannot parse capability: chromeOptions
from unknown error: unrecognized chrome option: download.default_directory
(Driver info: chromedriver=2.24.417424 (c5c5ea873213ee72e3d0929b47482681555340c3),platform=Linux 4.10.0-37-generic x86_64)
それでは、どのようにこの問題を解決するために?私はこの「能力」を使う必要がありますか?もしそうなら、どのくらい正確に?
はい、それは...私は間違った方法でオプションを使用しました。適切な文書を入手するのは難しいです。それはどこかに記載されていますか? – Alex