<legend id='JsnWi'><style id='JsnWi'><dir id='JsnWi'><q id='JsnWi'></q></dir></style></legend>
    <bdo id='JsnWi'></bdo><ul id='JsnWi'></ul>
  • <tfoot id='JsnWi'></tfoot>
  • <small id='JsnWi'></small><noframes id='JsnWi'>

      1. <i id='JsnWi'><tr id='JsnWi'><dt id='JsnWi'><q id='JsnWi'><span id='JsnWi'><b id='JsnWi'><form id='JsnWi'><ins id='JsnWi'></ins><ul id='JsnWi'></ul><sub id='JsnWi'></sub></form><legend id='JsnWi'></legend><bdo id='JsnWi'><pre id='JsnWi'><center id='JsnWi'></center></pre></bdo></b><th id='JsnWi'></th></span></q></dt></tr></i><div id='JsnWi'><tfoot id='JsnWi'></tfoot><dl id='JsnWi'><fieldset id='JsnWi'></fieldset></dl></div>
      2. 如何通过Chrome上的Python使用Selenium更改多个下载的文件目录,而不必多次启动Web驱动程序和链接?

        时间:2024-08-10
        <i id='77aiw'><tr id='77aiw'><dt id='77aiw'><q id='77aiw'><span id='77aiw'><b id='77aiw'><form id='77aiw'><ins id='77aiw'></ins><ul id='77aiw'></ul><sub id='77aiw'></sub></form><legend id='77aiw'></legend><bdo id='77aiw'><pre id='77aiw'><center id='77aiw'></center></pre></bdo></b><th id='77aiw'></th></span></q></dt></tr></i><div id='77aiw'><tfoot id='77aiw'></tfoot><dl id='77aiw'><fieldset id='77aiw'></fieldset></dl></div>
          • <bdo id='77aiw'></bdo><ul id='77aiw'></ul>

            • <small id='77aiw'></small><noframes id='77aiw'>

            • <legend id='77aiw'><style id='77aiw'><dir id='77aiw'><q id='77aiw'></q></dir></style></legend>

                    <tbody id='77aiw'></tbody>

                1. <tfoot id='77aiw'></tfoot>
                  本文介绍了如何通过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)
                  

                  这篇关于如何通过Chrome上的Python使用Selenium更改多个下载的文件目录,而不必多次启动Web驱动程序和链接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何将Python用作服务器端语言? 下一篇:InvalidArgumentException:消息:使用&#39;的无效参数:&#39;必须是字符串

                  相关文章

                2. <legend id='Yo6Lj'><style id='Yo6Lj'><dir id='Yo6Lj'><q id='Yo6Lj'></q></dir></style></legend>
                  <tfoot id='Yo6Lj'></tfoot>

                  <i id='Yo6Lj'><tr id='Yo6Lj'><dt id='Yo6Lj'><q id='Yo6Lj'><span id='Yo6Lj'><b id='Yo6Lj'><form id='Yo6Lj'><ins id='Yo6Lj'></ins><ul id='Yo6Lj'></ul><sub id='Yo6Lj'></sub></form><legend id='Yo6Lj'></legend><bdo id='Yo6Lj'><pre id='Yo6Lj'><center id='Yo6Lj'></center></pre></bdo></b><th id='Yo6Lj'></th></span></q></dt></tr></i><div id='Yo6Lj'><tfoot id='Yo6Lj'></tfoot><dl id='Yo6Lj'><fieldset id='Yo6Lj'></fieldset></dl></div>
                    • <bdo id='Yo6Lj'></bdo><ul id='Yo6Lj'></ul>

                    <small id='Yo6Lj'></small><noframes id='Yo6Lj'>