如何在 HP QC 脚本编辑器中读取用户电子邮件地址?
在 HP Quality Center 脚本编辑器中,我可以使用“用户”对象访问当前用户信息(例如用户名或全名)。
如何访问当前用户的电子邮件地址属性?
Inside the HP Quality Center Scripting Editor, I can access current user info (like user name or full name) with the "user" object.
How do I access the current user E-Mail address property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我在 QC 工作流程文档中看到的内容,用户对象只有这些属性:FullName、IsInGorup 和 UserName。
在这种情况下,您需要访问完整的用户数据,您可以通过使用 OTA 公开的自定义元数据来获取这些数据。
要获取用户信息,您需要获取具有 Email 属性的 CustomizationUser 对象。
以下是有关迭代用户列表的文档中的示例:
From what I can see in QC workflow documentation, the user object only had these properties: FullName, IsInGorup and UserName.
Since this is the case, you need access to the full user data, which you can get by using the customization metadata exposed by OTA.
To get user info, you need to get the CustomizationUser object which has an Email property.
Here is a sample from documentation on iterating over the users list: