如何在 javascript 变量中存储带有 selenium 的元素文本?

发布于 2024-09-19 18:53:22 字数 393 浏览 4 评论 0原文

我有这个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糖 2024-09-26 18:53:22

在 BrowserMob 中,您可以

var titleText = selenium.getText("//div[@id='flhcd']/h3");

像使用任何变量一样使用 titleText。

In BrowserMob you can do

var titleText = selenium.getText("//div[@id='flhcd']/h3");

and then use titleText like you would any variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文