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

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

        Selenium 中的 execute_script() 有什么作用

        时间:2023-10-12

          <legend id='6q8Vj'><style id='6q8Vj'><dir id='6q8Vj'><q id='6q8Vj'></q></dir></style></legend>

          <small id='6q8Vj'></small><noframes id='6q8Vj'>

              <tfoot id='6q8Vj'></tfoot>
                <bdo id='6q8Vj'></bdo><ul id='6q8Vj'></ul>
                  <tbody id='6q8Vj'></tbody>

                • <i id='6q8Vj'><tr id='6q8Vj'><dt id='6q8Vj'><q id='6q8Vj'><span id='6q8Vj'><b id='6q8Vj'><form id='6q8Vj'><ins id='6q8Vj'></ins><ul id='6q8Vj'></ul><sub id='6q8Vj'></sub></form><legend id='6q8Vj'></legend><bdo id='6q8Vj'><pre id='6q8Vj'><center id='6q8Vj'></center></pre></bdo></b><th id='6q8Vj'></th></span></q></dt></tr></i><div id='6q8Vj'><tfoot id='6q8Vj'></tfoot><dl id='6q8Vj'><fieldset id='6q8Vj'></fieldset></dl></div>
                  本文介绍了Selenium 中的 execute_script() 有什么作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  browser.execute_script("window.open('about:blank', 'tab2');")
                  browser.switch_to.window("tab2")
                  browser.get('http://bing.com')
                  

                  我在网上搜索在python中使用selenium打开新标签的方法,ctrl + t的方法不起作用在 chrome 上,所以我偶然发现了上面的代码,但是我无法理解 'excute_script' 的作用.

                  I was searching online ways to open a new tab using selenium in python, and the method of ctrl + t wasn't working on chrome so I stumbled on the above piece of code, however I am not able to understand what 'excute_script' does.

                  推荐答案

                  execute_script 方法允许执行作为字符串参数传递的 JavaScript

                  execute_script method allows to execute JavaScript passed as string argument

                  请注意,您可以使用 arguments 将数据从 Python 代码传递到 JavaScript 代码,例如

                  Note that you can pass data from Python code into JavaScript code using arguments, e.g.

                  hello = "Hello"
                  friends = " friends"
                  
                  browser.execute_script('alert(arguments[0], arguments[1]);', (hello,  friends))
                  

                  这篇关于Selenium 中的 execute_script() 有什么作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用JS输入文字,但是如果我在一个文本框中输入 下一篇:如何在 Selenium WebDriver 中获取单个文本节点

                  相关文章

                  最新文章

                    1. <small id='hd1ln'></small><noframes id='hd1ln'>

                    2. <legend id='hd1ln'><style id='hd1ln'><dir id='hd1ln'><q id='hd1ln'></q></dir></style></legend>
                    3. <tfoot id='hd1ln'></tfoot>
                      • <bdo id='hd1ln'></bdo><ul id='hd1ln'></ul>
                      <i id='hd1ln'><tr id='hd1ln'><dt id='hd1ln'><q id='hd1ln'><span id='hd1ln'><b id='hd1ln'><form id='hd1ln'><ins id='hd1ln'></ins><ul id='hd1ln'></ul><sub id='hd1ln'></sub></form><legend id='hd1ln'></legend><bdo id='hd1ln'><pre id='hd1ln'><center id='hd1ln'></center></pre></bdo></b><th id='hd1ln'></th></span></q></dt></tr></i><div id='hd1ln'><tfoot id='hd1ln'></tfoot><dl id='hd1ln'><fieldset id='hd1ln'></fieldset></dl></div>