如何从创建使用 ID 的项目后创建的 ID 中创建变量?
我遇到的问题是在测试中我创建了一个获取 ID 的订单。这个ID每次都不一样。
这是一些示例代码的图片:
预先感谢您的帮助。
——柯蒂斯
The problem I am having is in my testing I create an order which obtains an ID. This ID is different every-time.
Here is a picture of some sample code:
Thanks in advance to any help.
--Curtis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过 XPath 吗? 这里有一个教程。
输出应该是您需要的 ID。如果你有多个ID具有相同的xpath,这可能是一个问题,没有尝试过。
祝你好运,
戴夫
Have you tried XPath? Here is a tutorial on it.
The output should be the ID you need. If you have multiple ID's with the same xpath, it could be a problem, didn't try that.
Good Luck,
Dave
我无法通过提供的代码准确判断,但不会有这么简单的工作
testID = @browser.div(:class, /screenlet-title-bar/).text
后跟一些字符串进行操作以修剪任何不必要的空格或字符:
testID.gsub("采购订单#","")#Removesleading text
I can't tell exactly by the code provided, but wouldn't something this simple work
testID = @browser.div(:class, /screenlet-title-bar/).text
followed by some string manipulation to trim any unnecessary space or characters:
testID.gsub(" Purchase Order #", "") #Removes leading text