如何在 javascript 变量中存储带有 selenium 的元素文本?
我有这个html:
<div class="title">
<div class="subtitle">
<div id="flhcd1>
<h3>Hello</h3>
<span></span>
</div>
<div class="subtitle2">
</div>
</div>
我希望能够使用selenium和javascript将文本存储在变量 titleText
的
(Hello) 中。
我将在 browsermob 中使用此代码来监视测试。
I have this html:
<div class="title">
<div class="subtitle">
<div id="flhcd1>
<h3>Hello</h3>
<span></span>
</div>
<div class="subtitle2">
</div>
</div>
I want to be able to use selenium and javascript to store the text in the <h3>
(Hello) in the variable titleText
.
I will be using this code in browsermob for monitoring tests.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 BrowserMob 中,您可以
像使用任何变量一样使用 titleText。
In BrowserMob you can do
and then use titleText like you would any variable.