@sapui5/sap.fe.test 1.96.0 → 1.96.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/sap/fe/test/.library
CHANGED
|
@@ -446,6 +446,13 @@ sap.ui.define(
|
|
|
446
446
|
.isDialogElement()
|
|
447
447
|
.hasType("sap.m.StandardListItem")
|
|
448
448
|
.checkNumberOfMatches(iExpectedNumber)
|
|
449
|
+
.success(
|
|
450
|
+
OpaBuilder.create()
|
|
451
|
+
.isDialogElement()
|
|
452
|
+
.hasType("sap.m.Button")
|
|
453
|
+
.hasProperties({ icon: "sap-icon://decline" })
|
|
454
|
+
.doPress()
|
|
455
|
+
)
|
|
449
456
|
);
|
|
450
457
|
}
|
|
451
458
|
} else {
|
|
@@ -465,6 +472,13 @@ sap.ui.define(
|
|
|
465
472
|
.hasType("sap.m.StandardListItem")
|
|
466
473
|
.hasProperties({ title: sFieldName })
|
|
467
474
|
.checkNumberOfMatches(iExpectedNumber)
|
|
475
|
+
.success(
|
|
476
|
+
OpaBuilder.create()
|
|
477
|
+
.isDialogElement()
|
|
478
|
+
.hasType("sap.m.Button")
|
|
479
|
+
.hasProperties({ icon: "sap-icon://decline" })
|
|
480
|
+
.doPress()
|
|
481
|
+
)
|
|
468
482
|
);
|
|
469
483
|
}
|
|
470
484
|
|