UI5 - OPA5 测试 - 模拟 "right click" 或 "long press" 或 "context menu"
UI5 - OPA5 tests - simulate "right click" or "long press" or "context menu"
我从 UI5 中的 OPA5 测试开始,我创建了一个上下文菜单,当按钮、标签或图像被右键单击或者用户在触摸屏上按住它时会显示该菜单。
现在我需要为此编写一个 OPA5 测试。我可以使用 new sap.ui.test.actions.Press() 执行左键单击,但我无法执行右键单击或长按。
https://sapui5.hana.ondemand.com/#/api/sap.ui.test.actions/overview
有人可以帮忙吗?
我相信我能写成jQuery。由于 UI5 基于 jQuery 应该有办法,但我不知道如何结合 jQuery 和 UI5.
如果您的控件有右击、按住等事件,您应该能够在 Opa 测试中调用此事件,例如:
iRightClickMyControl: function () {
return this.waitFor({
id: "myControlId",
viewName: "myView",
actions: function (oControl) {
oControl.RightClick();
}
errorMessage: "myControl was not found."
});
}
参见 "Writing Your Own Action"
https://openui5.hana.ondemand.com/#/topic/8615a0b9088645ae936dbb8bbce5d01d
我从 UI5 中的 OPA5 测试开始,我创建了一个上下文菜单,当按钮、标签或图像被右键单击或者用户在触摸屏上按住它时会显示该菜单。
现在我需要为此编写一个 OPA5 测试。我可以使用 new sap.ui.test.actions.Press() 执行左键单击,但我无法执行右键单击或长按。
https://sapui5.hana.ondemand.com/#/api/sap.ui.test.actions/overview
有人可以帮忙吗?
我相信我能写成jQuery。由于 UI5 基于 jQuery 应该有办法,但我不知道如何结合 jQuery 和 UI5.
如果您的控件有右击、按住等事件,您应该能够在 Opa 测试中调用此事件,例如:
iRightClickMyControl: function () {
return this.waitFor({
id: "myControlId",
viewName: "myView",
actions: function (oControl) {
oControl.RightClick();
}
errorMessage: "myControl was not found."
});
}
参见 "Writing Your Own Action" https://openui5.hana.ondemand.com/#/topic/8615a0b9088645ae936dbb8bbce5d01d