Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Squish 自动化 Windows 应用程序。在对 GUI 进行一些更改后,我正在尝试验证所需的文本是否显示在窗口中。我使用 object spy 来获取对象 ID,但我很困惑如何给出测试验证点。以下验证点在结果窗口中显示为“真”和“真”相等。但我希望它是一样的,例如 4X 和 4X 是相等的。
test.compare(findObject("{name ='textObjective'}").enabled, True)
谢谢你!!
除了enabled属性,您还可以比较任何其他属性 - 例如text:
enabled
text
test.compare(findObject("{name ='textObjective'}").text, "4X")