在 Selenium 中存储动态文本
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找出显示参考号的UI元素的标识符(CSS/XPath/等),然后使用相对的getText()命令。在爪哇,
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,