将表变量的值存储到我自己的 selenium 变量中
您好,我正在使用 selenium 和 testng,现在我必须将页面中存在的值存储到某个变量,但我对此有很多问题
这是页面源的主要部分,我需要在其中存储值“2”在某些变量中。 我不明白非截断文本是否会给我这个值,因为它们有太多相同的行,它们具有不同的值。
这是我的页面源。
<非截断文本=“2”>
Hi i am using selenium with testng and right now i have to store a value present in the page to some variable but i am having much problem regarding this
This is the main part of the page source where i need to store the value "2" in some variable.
I don't understand whether non-truncated-text will give me the value because their are too many such same lines are their with different values.
here is my page source .
< non-truncated-text="2">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
storeTable ( tableCellAddress, variableName )
从表中获取文本。 Selenium 有许多存储函数将页面上的值存储到变量中。有关函数列表,请参阅 Selenium 参考。You can use
storeTable ( tableCellAddress, variableName )
to get text from a table. Selenium has many store functions to store values on the page into variables. See Selenium Reference for a list of functions.