Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试访问 selenium (Lotus) 中以下标签的值
<h4>Lotus</h4>
当我尝试显示 h4 标记的属性时,它不是文本的事实正在返回一个空的 msgbox。你们知道我应该怎么做吗?
谢谢。
这不是价值。这是您尝试拥有的h4标签的文本
您需要使用以下代码
selenium.getText("//h4");
以上代表Java作为编程语言
Java