How to get HTML code of a WebElement in Selenium(如何在 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 代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Selenium 中获取 WebElement 的 HTML 代码
基础教程推荐
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01