如何通过Chrome上的Python使用Selenium更改多个下载的文件目录,而不必多次启动Web驱动程序和链接?

问题描述

我是Selenium的新手,已经尝试这样做有一段时间了,我在网上能找到的唯一方法是只在启动Web驱动程序和链接时更改下载文件目录的方法。我主要想做的是从一个Chrome页面下载多个文件,并让Selenium更改每个文件的下载路径目录,而不必每次都重新启动驱动程序和浏览器。如有任何帮助或建议,我们将不胜感激


解决方案

您可以使用driver.command_executor方法来实现。它允许您与当前浏览器会话交互。 您可以使用此方法更改下载路径,而无需重新启动Web驱动程序。

代码片段如下所示-

您可以根据需要更改'downloadPath'参数。

#initially setting the download path to current directory
driver.command_executor._commands["send_command"] = ("POST", '/session/$sessionId/chromium/send_command')
params = {'cmd': 'Page.setDownloadBehavior', 'params': {'behavior': 'allow','downloadPath':os.getcwd()}}
command_result = driver.execute("send_command", params)

#your code to download the file

#followed by changing the download directory
#for example here I'm changing it to data folder inside the current working directory

driver.command_executor._commands["send_command"] = ("POST", '/session/$sessionId/chromium/send_command')
params = {'cmd': 'Page.setDownloadBehavior', 'params': {'behavior': 'allow','downloadPath':os.getcwd()+'data'}}
command_result = driver.execute("send_command", params)

相关文章