质量中心:附件链接
在惠普质量中心, 我有一个测试用例,其中附有一些文档。 我想直接从其他测试用例(不是测试用例)调用附件。 有人可以帮忙吗?
In HP Qualtiy Center,
I have a test case where I have attached some documents.
I want to call directly the attachment from other test cases(not the test case).
Can somebody help out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以定义自定义操作(将显示为附加按钮),并在用户单击该图标时使用 OTA API 检索所需的附件。
(自从我使用 QC 工作流程以来已经有一段时间了,所以对可能错误的语法表示歉意,但它演示了这个想法)
通过 UI 添加新的操作按钮(我们称之为“getMyFiles”)。在该捕获事件之后 - 用户单击按钮:
现在检索附件并对其执行任何您想要的操作(例如打开...复制...保存在某处)
就是这样
You can define a custom action (which will appear as additional button), and use OTA API to retrieve attachments you want when user clicks on that icon.
(it's been a while since I worked with QC workflow, so apologies for possibly wrong syntax, but it demonstrates the idea)
Add new action button through UI (let's call it "getMyFiles"). After that catch event - user clicked the button:
Now retrieve the attachments and do whatever you want with them (e.g. open...copy...save somewhere)
That's about it