在 Selenium 中存储动态文本

发布于 2024-11-02 03:36:34 字数 311 浏览 1 评论 0原文

我是 Selenium 的新手,有以下关于存储动态文本的问题...

在我们的 Web 应用程序中,当执行某个功能(即传输)时,会显示一条确认消息(即“功能已完成。参考号是#” 12345”。然后,参考号与另一页上的其他参考号一起显示在列表中。作为测试的一部分,在生成参考号后,我想从列表中选择刚刚生成的参考号。 例子 1 创建项目。 显示 2 条确认消息 3 保存参考号 4 导航到包含参考号列表的其他页面 5 从刚刚创建的列表中选择项目(使用参考号进行选择)

问题:如何保存确认消息中的参考号,以便 Selenium 从参考号列表中选择该号码?

谢谢, D

I'm new to Selenium and had the following question about storing dynamic text...

In our web application, when a function is performed (i.e. transfer), a confirmation message is displayed (i.e. "function is completed. The reference number is #12345". The ref number is then displayed in a list with other ref numbers on another page. As part of my test, after the ref. number is generated, I would like to select from the list the ref number that was just generated.
Example
1 create item.
2 confirmation message displays
3 save ref number
4 navigate to other page which contains list of ref #s
5 select item from list that was just created (select using ref #)

Question: How do I save the ref number from the confirmation message so that I have Selenium select that number from the list of ref #'s?

Thanks,
D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

墟烟 2024-11-09 03:36:34

找出显示参考号的UI元素的标识符(CSS/XPath/等),然后使用相对的getText()命令。在爪哇,

String text = selenium.getText("your_identifier");

Find out the identifier (CSS/XPath/etc.) of the UI element that displays the reference number, and then use the relatively getText() command. In Java,

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