27 lines
707 B
JavaScript
27 lines
707 B
JavaScript
sap.ui.define([
|
|
"sap/ui/test/opaQunit",
|
|
"./pages/App"
|
|
], (opaTest) => {
|
|
"use strict";
|
|
|
|
QUnit.module("Navigation");
|
|
|
|
opaTest("Should open the Hello dialog", (Given, When, Then) => {
|
|
// Arrangements
|
|
Given.iStartMyUIComponent({
|
|
componentConfig: {
|
|
name: "ui5.walkthrough"
|
|
}
|
|
});
|
|
|
|
//Actions
|
|
When.onTheAppPage.iPressTheSayHelloWithDialogButtion();
|
|
|
|
// Assertions
|
|
Then.onTheAppPage.iShouldSeeTheHelloDialog();
|
|
|
|
// Cleanup
|
|
Then.iTeardownMyApp();
|
|
|
|
});
|
|
}); |