• <small id='yKEmV'></small><noframes id='yKEmV'>

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

        如何在 Selenium 中获取 WebElement 的 HTML 代码

        时间:2023-09-28

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

              <small id='5QXeJ'></small><noframes id='5QXeJ'>

                <legend id='5QXeJ'><style id='5QXeJ'><dir id='5QXeJ'><q id='5QXeJ'></q></dir></style></legend>
                • <tfoot id='5QXeJ'></tfoot>
                  本文介绍了如何在 Selenium 中获取 WebElement 的 HTML 代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我是测试新手,所以如果我的问题听起来有点初级,我提前道歉.

                  I am new at testing so my apologies in advance if my question sounds a bit primary.

                  我正在使用 Selenium 和 Java 编写测试.

                  I am using Selenium and Java to write a test.

                  我知道webElement.getAttribute("innerHTML"); 给我带来了 innerHTML,例如下面的元素:

                  I know that webElement.getAttribute("innerHTML"); brings me the innerHTML, for example for the element below:

                  <a href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button" style="position: absolute; border-radius: 0px 0px 4px 4px;">
                      <span class="ui-icon ui-icon-closethick">close</span>
                  </a>
                  

                  它返回:

                  <span class="ui-icon ui-icon-closethick">close</span>
                  

                  但我需要一些能够为我带来 WebElement "a" 内部属性的东西,如下所示:

                  but I need something that brings me the inner attribute of WebElement "a", something like below:

                  href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button" style="position: absolute; border-radius: 0px 0px 4px 4px;"
                  

                  推荐答案

                  如果想要元素本身的HTML,可以使用

                  If you want the HTML of the element itself, you can use

                  webElement.getAttribute("outerHTML");
                  

                  它将返回元素本身的 HTML 以及所有子元素.我不确定这是否正是你想要的.我认为没有办法只获取所选元素的 HTML.

                  It will return the HTML of the element itself plus all the children elements. I'm not sure if that's exactly what you want. I don't think there is a way to just get the HTML of the selected element only.

                  这篇关于如何在 Selenium 中获取 WebElement 的 HTML 代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Chromedriver 78 可能存在问题,Selenium 找不到在 Ch 下一篇:“ExpectedConditions.visibilityOfElementLocated"之间的

                  相关文章

                  最新文章

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

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