要明確界定的webdriver我們用下面的代碼中的硒之前定義下載目錄:Python中硒的webdriver - 動態更改下載目錄
chromeOptions = webdriver.ChromeOptions()
prefs = {"download.default_directory" : "C:/data/cline"}
chromeOptions.add_experimental_option("prefs",prefs)
chromePath = "path to chromedriver"
driver = selenium.webdriver.chrome.webdriver.WebDriver(executable_path=chromePath, port=0, chrome_options=chromeOptions, service_args=None, desired_capabilities=None, service_log_path=None)
我想了一些文件,每個下載到不同(新創建)目錄。定義驅動程序後可以更改下載目錄嗎?
可能重複[如何webdriver的同時運行更改默認的下載文件夾?(http://stackoverflow.com/questions/23896625/how-to-change-default-download-文件夾,而webdriver正在運行) –