@sapui5/sap.fe.test 1.102.3 → 1.105.0
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 +4 -5
- package/src/sap/fe/test/.library +1 -1
- package/src/sap/fe/test/BaseActions.js +103 -97
- package/src/sap/fe/test/BaseArrangements.js +4 -15
- package/src/sap/fe/test/BaseAssertions.js +39 -46
- package/src/sap/fe/test/CollaborationClient.js +5 -5
- package/src/sap/fe/test/CollaborationClient.ts +5 -5
- package/src/sap/fe/test/FeMocks.js +1 -3
- package/src/sap/fe/test/FeMocks.ts +4 -7
- package/src/sap/fe/test/Flexibility.js +115 -162
- package/src/sap/fe/test/JestTemplatingHelper.js +196 -14
- package/src/sap/fe/test/JestTemplatingHelper.ts +173 -18
- package/src/sap/fe/test/JourneyRunner.js +31 -37
- package/src/sap/fe/test/ListReport.js +30 -13
- package/src/sap/fe/test/ObjectPage.js +43 -33
- package/src/sap/fe/test/Shell.js +0 -6
- package/src/sap/fe/test/TemplatePage.js +0 -2
- package/src/sap/fe/test/TemplatingTestUtils.js +20 -20
- package/src/sap/fe/test/UI5MockHelper.js +373 -320
- package/src/sap/fe/test/UI5MockHelper.ts +388 -241
- package/src/sap/fe/test/Utils.js +19 -20
- package/src/sap/fe/test/api/BaseAPI.js +11 -26
- package/src/sap/fe/test/api/ChartActions.js +116 -119
- package/src/sap/fe/test/api/ChartAssertions.js +18 -22
- package/src/sap/fe/test/api/CollaborationAPI.js +6 -6
- package/src/sap/fe/test/api/CollaborationAPI.ts +9 -11
- package/src/sap/fe/test/api/DialogAPI.js +11 -13
- package/src/sap/fe/test/api/DialogActions.js +8 -8
- package/src/sap/fe/test/api/DialogAssertions.js +9 -10
- package/src/sap/fe/test/api/DialogHelper.js +63 -0
- package/src/sap/fe/test/api/DialogMessageActions.js +2 -1
- package/src/sap/fe/test/api/DialogValueHelpActions.js +17 -39
- package/src/sap/fe/test/api/DialogValueHelpAssertions.js +47 -19
- package/src/sap/fe/test/api/FilterBarAPI.js +11 -12
- package/src/sap/fe/test/api/FilterBarActions.js +26 -40
- package/src/sap/fe/test/api/FilterBarAssertions.js +28 -47
- package/src/sap/fe/test/api/FooterActionsBase.js +3 -4
- package/src/sap/fe/test/api/FooterActionsOP.js +6 -10
- package/src/sap/fe/test/api/FooterAssertionsBase.js +5 -10
- package/src/sap/fe/test/api/FooterAssertionsOP.js +8 -13
- package/src/sap/fe/test/api/FormAPI.js +5 -6
- package/src/sap/fe/test/api/FormActions.js +20 -21
- package/src/sap/fe/test/api/FormAssertions.js +14 -20
- package/src/sap/fe/test/api/HeaderAPI.js +12 -27
- package/src/sap/fe/test/api/HeaderActions.js +10 -12
- package/src/sap/fe/test/api/HeaderActionsLR.js +76 -82
- package/src/sap/fe/test/api/HeaderAssertions.js +18 -27
- package/src/sap/fe/test/api/HeaderAssertionsLR.js +5 -8
- package/src/sap/fe/test/api/HeaderLR.js +7 -19
- package/src/sap/fe/test/api/KPICardAssertions.js +18 -37
- package/src/sap/fe/test/api/TableAPI.js +3 -13
- package/src/sap/fe/test/api/TableActions.js +2 -34
- package/src/sap/fe/test/api/TableAssertions.js +1 -24
- package/src/sap/fe/test/builder/FEBuilder.js +71 -75
- package/src/sap/fe/test/builder/MacroFieldBuilder.js +4 -3
- package/src/sap/fe/test/builder/MdcFieldBuilder.js +33 -29
- package/src/sap/fe/test/builder/MdcFilterBarBuilder.js +102 -104
- package/src/sap/fe/test/builder/MdcFilterFieldBuilder.js +9 -7
- package/src/sap/fe/test/builder/MdcTableBuilder.js +8 -4
- package/src/sap/fe/test/builder/VMBuilder.js +39 -55
- package/src/sap/fe/test/internal/ConsoleErrorChecker.js +241 -0
- package/src/sap/fe/test/internal/ConsoleErrorChecker.ts +206 -0
- package/src/sap/fe/test/internal/FEArrangements.js +28 -8
- package/src/sap/fe/test/library.js +3 -2
- package/src/sap/fe/test/library.ts +1 -0
|
@@ -50,7 +50,6 @@ sap.ui.define(
|
|
|
50
50
|
* </pre></code>
|
|
51
51
|
* @param {string | number} vColumn The column name, label or index
|
|
52
52
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
53
|
-
*
|
|
54
53
|
* @public
|
|
55
54
|
*/
|
|
56
55
|
Actions.prototype.iPressCell = function (mRowValues, vColumn) {
|
|
@@ -84,7 +83,6 @@ sap.ui.define(
|
|
|
84
83
|
* Alternatively, the 0-based row index can be used.
|
|
85
84
|
* @param {object} [mState] Defines the expected state of the row
|
|
86
85
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
87
|
-
*
|
|
88
86
|
* @public
|
|
89
87
|
*/
|
|
90
88
|
Actions.prototype.iSelectRows = function (vRowValues, mState) {
|
|
@@ -109,7 +107,6 @@ sap.ui.define(
|
|
|
109
107
|
* Selects all rows in a table.
|
|
110
108
|
*
|
|
111
109
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
112
|
-
*
|
|
113
110
|
* @public
|
|
114
111
|
*/
|
|
115
112
|
Actions.prototype.iSelectAllRows = function () {
|
|
@@ -133,7 +130,6 @@ sap.ui.define(
|
|
|
133
130
|
* </pre></code>
|
|
134
131
|
* Alternatively, the 0-based row index can be used.
|
|
135
132
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
136
|
-
*
|
|
137
133
|
* @public
|
|
138
134
|
*/
|
|
139
135
|
Actions.prototype.iPressRow = function (vRowValues) {
|
|
@@ -153,7 +149,6 @@ sap.ui.define(
|
|
|
153
149
|
* @param {number} iLevel The level of the group row to be expanded (1-based)
|
|
154
150
|
* @param {string} sTitle The title of the group row to be expanded
|
|
155
151
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
156
|
-
*
|
|
157
152
|
* @public
|
|
158
153
|
*/
|
|
159
154
|
Actions.prototype.iExpandGroupRow = function (iLevel, sTitle) {
|
|
@@ -173,7 +168,6 @@ sap.ui.define(
|
|
|
173
168
|
* @param {number} iLevel The level of the group row to be collapsed (1-based)
|
|
174
169
|
* @param {string} sTitle The title of the group row to be collapsed
|
|
175
170
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
176
|
-
*
|
|
177
171
|
* @public
|
|
178
172
|
*/
|
|
179
173
|
Actions.prototype.iCollapseGroupRow = function (iLevel, sTitle) {
|
|
@@ -192,7 +186,6 @@ sap.ui.define(
|
|
|
192
186
|
*
|
|
193
187
|
* @param {string} [sDirection] The scroll direction "up" or "down" (default)
|
|
194
188
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
195
|
-
*
|
|
196
189
|
* @ui5-restricted
|
|
197
190
|
*/
|
|
198
191
|
Actions.prototype.iScroll = function (sDirection) {
|
|
@@ -210,7 +203,6 @@ sap.ui.define(
|
|
|
210
203
|
* Scrolls update the grow threshold of responsive table and rebind the table.
|
|
211
204
|
*
|
|
212
205
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
213
|
-
*
|
|
214
206
|
* @ui5-restricted
|
|
215
207
|
*/
|
|
216
208
|
Actions.prototype.iPressMore = function () {
|
|
@@ -236,7 +228,6 @@ sap.ui.define(
|
|
|
236
228
|
* @param {object} mTargetValues A map of columns (either name or index) to its new value. The columns do not need to match the ones defined in <code>vRowValues</code>.
|
|
237
229
|
* @param {boolean} bInputNotFinalized If true, we keep the focus on the modified cell and don't press enter to validate the input
|
|
238
230
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
239
|
-
*
|
|
240
231
|
* @public
|
|
241
232
|
*/
|
|
242
233
|
Actions.prototype.iChangeRow = function (vRowValues, mTargetValues, bInputNotFinalized) {
|
|
@@ -275,7 +266,6 @@ sap.ui.define(
|
|
|
275
266
|
*
|
|
276
267
|
* @param {string | sap.fe.test.api.ActionIdentifier} [vActionIdentifier] The identifier of the action, or its label
|
|
277
268
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
278
|
-
*
|
|
279
269
|
* @public
|
|
280
270
|
*/
|
|
281
271
|
Actions.prototype.iExecuteAction = function (vActionIdentifier) {
|
|
@@ -295,7 +285,6 @@ sap.ui.define(
|
|
|
295
285
|
*
|
|
296
286
|
* @param {string | object} vAction The label of the action or its state
|
|
297
287
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
298
|
-
*
|
|
299
288
|
* @public
|
|
300
289
|
*/
|
|
301
290
|
Actions.prototype.iExecuteMenuAction = function (vAction) {
|
|
@@ -307,7 +296,6 @@ sap.ui.define(
|
|
|
307
296
|
*
|
|
308
297
|
* @param {boolean} [bShowDetails] Optional parameter to enforce a certain state (showing details yes/no corresponds to true/false); if not set, state is toggled
|
|
309
298
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
310
|
-
*
|
|
311
299
|
* @public
|
|
312
300
|
*/
|
|
313
301
|
Actions.prototype.iExecuteShowHideDetails = function (bShowDetails) {
|
|
@@ -330,7 +318,6 @@ sap.ui.define(
|
|
|
330
318
|
* Executes the <code>Delete</code> action on the table.
|
|
331
319
|
*
|
|
332
320
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
333
|
-
*
|
|
334
321
|
* @public
|
|
335
322
|
*/
|
|
336
323
|
Actions.prototype.iExecuteDelete = function () {
|
|
@@ -356,7 +343,6 @@ sap.ui.define(
|
|
|
356
343
|
* </pre></code>
|
|
357
344
|
* If using a plain string as the identifier, it is considered the item label
|
|
358
345
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
359
|
-
*
|
|
360
346
|
* @public
|
|
361
347
|
*/
|
|
362
348
|
Actions.prototype.iSelectQuickFilterItem = function (vItemIdentifier) {
|
|
@@ -384,7 +370,6 @@ sap.ui.define(
|
|
|
384
370
|
* Executes the <code>Create</code> action on the table.
|
|
385
371
|
*
|
|
386
372
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
387
|
-
*
|
|
388
373
|
* @public
|
|
389
374
|
*/
|
|
390
375
|
Actions.prototype.iExecuteCreate = function () {
|
|
@@ -403,7 +388,6 @@ sap.ui.define(
|
|
|
403
388
|
* Executes the <code>Fullscreen</code> action on the table.
|
|
404
389
|
*
|
|
405
390
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
406
|
-
*
|
|
407
391
|
* @public
|
|
408
392
|
*/
|
|
409
393
|
Actions.prototype.iExecuteFullScreen = function () {
|
|
@@ -422,7 +406,6 @@ sap.ui.define(
|
|
|
422
406
|
* Executes the action to create a row in the table.
|
|
423
407
|
*
|
|
424
408
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
425
|
-
*
|
|
426
409
|
* @public
|
|
427
410
|
*/
|
|
428
411
|
Actions.prototype.iExecuteInlineCreate = function () {
|
|
@@ -454,7 +437,6 @@ sap.ui.define(
|
|
|
454
437
|
* Alternatively, the 0-based row index can be used.
|
|
455
438
|
* @param {string | number} vColumn The column name, label or index
|
|
456
439
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
457
|
-
*
|
|
458
440
|
* @public
|
|
459
441
|
*/
|
|
460
442
|
Actions.prototype.iExecuteInlineAction = function (vRowValues, vColumn) {
|
|
@@ -499,7 +481,6 @@ sap.ui.define(
|
|
|
499
481
|
* Alternatively, the 0-based row index can be used.
|
|
500
482
|
* @param {string | number} vColumn The column name, label or index
|
|
501
483
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
502
|
-
*
|
|
503
484
|
* @public
|
|
504
485
|
*/
|
|
505
486
|
Actions.prototype.iExecuteKeyboardShortcut = function (sShortcut, vRowValues, vColumn) {
|
|
@@ -526,7 +507,6 @@ sap.ui.define(
|
|
|
526
507
|
*
|
|
527
508
|
* @param {string} [sVariantName] The name of the new variant. If omitted, the current variant will be overwritten
|
|
528
509
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
529
|
-
*
|
|
530
510
|
* @public
|
|
531
511
|
*/
|
|
532
512
|
Actions.prototype.iSaveVariant = function (sVariantName) {
|
|
@@ -554,7 +534,6 @@ sap.ui.define(
|
|
|
554
534
|
*
|
|
555
535
|
* @param {string} sVariantName The name of the variant to be removed
|
|
556
536
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
557
|
-
*
|
|
558
537
|
* @public
|
|
559
538
|
*/
|
|
560
539
|
Actions.prototype.iRemoveVariant = function (sVariantName) {
|
|
@@ -578,7 +557,6 @@ sap.ui.define(
|
|
|
578
557
|
*
|
|
579
558
|
* @param {string} sVariantName The name of the variant to be selected
|
|
580
559
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
581
|
-
*
|
|
582
560
|
* @public
|
|
583
561
|
*/
|
|
584
562
|
Actions.prototype.iSelectVariant = function (sVariantName) {
|
|
@@ -602,7 +580,6 @@ sap.ui.define(
|
|
|
602
580
|
*
|
|
603
581
|
* @param {string} sVariantName The name of the variant to be set as the default variant. If omitted, the Standard variant is set as the default
|
|
604
582
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
605
|
-
*
|
|
606
583
|
* @public
|
|
607
584
|
*/
|
|
608
585
|
Actions.prototype.iSetDefaultVariant = function (sVariantName) {
|
|
@@ -640,7 +617,6 @@ sap.ui.define(
|
|
|
640
617
|
*
|
|
641
618
|
* @param {string | sap.fe.test.api.ColumnIdentifier} vColumnIdentifier The identifier of the column field, or its label
|
|
642
619
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
643
|
-
*
|
|
644
620
|
* @public
|
|
645
621
|
*/
|
|
646
622
|
Actions.prototype.iAddAdaptationColumn = function (vColumnIdentifier) {
|
|
@@ -657,7 +633,6 @@ sap.ui.define(
|
|
|
657
633
|
*
|
|
658
634
|
* @param {string | sap.fe.test.api.ColumnIdentifier} vColumnIdentifier The identifier of the column field, or its label
|
|
659
635
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
660
|
-
*
|
|
661
636
|
* @public
|
|
662
637
|
*/
|
|
663
638
|
Actions.prototype.iRemoveAdaptationColumn = function (vColumnIdentifier) {
|
|
@@ -675,7 +650,6 @@ sap.ui.define(
|
|
|
675
650
|
* @param {string | sap.fe.test.api.ColumnIdentifier} vColumnIdentifier The identifier of the column field, or its label
|
|
676
651
|
* @param {sap.ui.core.SortOrder} [sSortOrder] The sort order, default is {@link sap.ui.core.SortOrder.Ascending}
|
|
677
652
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
678
|
-
*
|
|
679
653
|
* @public
|
|
680
654
|
*/
|
|
681
655
|
Actions.prototype.iChangeSortOrder = function (vColumnIdentifier, sSortOrder) {
|
|
@@ -735,9 +709,10 @@ sap.ui.define(
|
|
|
735
709
|
|
|
736
710
|
/**
|
|
737
711
|
* Sorts the table entries by the specified column.
|
|
712
|
+
*
|
|
738
713
|
* @param {string | sap.fe.test.api.ColumnIdentifier | number} vColumnIdentifier The identifier of the column field, its label or index
|
|
739
714
|
* @param {string} [sFieldLabel] The target field to sort by in case of a complex property
|
|
740
|
-
* @param bDescending
|
|
715
|
+
* @param {boolean} bDescending
|
|
741
716
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
742
717
|
* @public
|
|
743
718
|
*/
|
|
@@ -765,7 +740,6 @@ sap.ui.define(
|
|
|
765
740
|
* @param {string | sap.fe.test.api.ColumnIdentifier | number} vColumnIdentifier The identifier of the column field, its label or index
|
|
766
741
|
* @param {string} [sFieldLabel] The target field to group on in case of a complex property
|
|
767
742
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
768
|
-
*
|
|
769
743
|
* @public
|
|
770
744
|
*/
|
|
771
745
|
Actions.prototype.iGroupByColumn = function (vColumnIdentifier, sFieldLabel) {
|
|
@@ -792,7 +766,6 @@ sap.ui.define(
|
|
|
792
766
|
* @param {string | sap.fe.test.api.ColumnIdentifier | number} vColumnIdentifier The identifier of the column field, its label or index
|
|
793
767
|
* @param {string} [sFieldLabel] The target field to group on in case of a complex property
|
|
794
768
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
795
|
-
*
|
|
796
769
|
* @public
|
|
797
770
|
*/
|
|
798
771
|
Actions.prototype.iAggregateByColumn = function (vColumnIdentifier, sFieldLabel) {
|
|
@@ -818,7 +791,6 @@ sap.ui.define(
|
|
|
818
791
|
*
|
|
819
792
|
* @param {string} [sSearchText] The new search text
|
|
820
793
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
821
|
-
*
|
|
822
794
|
* @public
|
|
823
795
|
*/
|
|
824
796
|
Actions.prototype.iChangeSearchField = function (sSearchText) {
|
|
@@ -836,7 +808,6 @@ sap.ui.define(
|
|
|
836
808
|
* Resets the search field.
|
|
837
809
|
*
|
|
838
810
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
839
|
-
*
|
|
840
811
|
* @public
|
|
841
812
|
*/
|
|
842
813
|
Actions.prototype.iResetSearchField = function () {
|
|
@@ -855,7 +826,6 @@ sap.ui.define(
|
|
|
855
826
|
* @param {string | object} vValue Defines the value of the filter field condition
|
|
856
827
|
* @param {boolean} [bClearFirst] Set to <code>true</code> to clear previously set filters, otherwise all previously set values will be kept
|
|
857
828
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
858
|
-
*
|
|
859
829
|
* @public
|
|
860
830
|
*/
|
|
861
831
|
Actions.prototype.iChangeFilterField = function (vColumnIdentifier, vValue, bClearFirst) {
|
|
@@ -898,7 +868,6 @@ sap.ui.define(
|
|
|
898
868
|
*
|
|
899
869
|
* @param {string[][]} aData The data to be pasted
|
|
900
870
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
901
|
-
*
|
|
902
871
|
* @public
|
|
903
872
|
*/
|
|
904
873
|
Actions.prototype.iPasteData = function (aData) {
|
|
@@ -914,7 +883,6 @@ sap.ui.define(
|
|
|
914
883
|
* Presses the messageStrip filter in case of issues, warnings or error message on the table.
|
|
915
884
|
*
|
|
916
885
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
917
|
-
*
|
|
918
886
|
* @public
|
|
919
887
|
* @ui5-restricted
|
|
920
888
|
*/
|
|
@@ -41,7 +41,6 @@ sap.ui.define(
|
|
|
41
41
|
*
|
|
42
42
|
* @param {object} [mState] Defines the expected state of the table
|
|
43
43
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
44
|
-
*
|
|
45
44
|
* @public
|
|
46
45
|
*/
|
|
47
46
|
TableAssertions.prototype.iCheckState = function (mState) {
|
|
@@ -71,7 +70,6 @@ sap.ui.define(
|
|
|
71
70
|
* @param {object} [mState] Defines the expected state of the target row
|
|
72
71
|
* @param {Array} [vEmptyColumns] Defines the expected empty columns
|
|
73
72
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
74
|
-
*
|
|
75
73
|
* @public
|
|
76
74
|
*/
|
|
77
75
|
TableAssertions.prototype.iCheckRows = function (mRowValues, iExpectedNumberOfRows, mState, vEmptyColumns) {
|
|
@@ -121,7 +119,6 @@ sap.ui.define(
|
|
|
121
119
|
* </pre></code>
|
|
122
120
|
* @param {object} [mState] Defines the expected state of the target row
|
|
123
121
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
124
|
-
*
|
|
125
122
|
* @public
|
|
126
123
|
*/
|
|
127
124
|
TableAssertions.prototype.iCheckCreationRow = function (mRowValues, mState) {
|
|
@@ -153,7 +150,6 @@ sap.ui.define(
|
|
|
153
150
|
*
|
|
154
151
|
* @param {number} iExpectedNumberOfItems The expected number of quick-filter items
|
|
155
152
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
156
|
-
*
|
|
157
153
|
* @public
|
|
158
154
|
*/
|
|
159
155
|
TableAssertions.prototype.iCheckQuickFilterItems = function (iExpectedNumberOfItems) {
|
|
@@ -180,7 +176,6 @@ sap.ui.define(
|
|
|
180
176
|
* }
|
|
181
177
|
* </pre></code>
|
|
182
178
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
183
|
-
*
|
|
184
179
|
* @public
|
|
185
180
|
*/
|
|
186
181
|
TableAssertions.prototype.iCheckColumns = function (iExpectedNumberOfColumns, mColumnStateMap) {
|
|
@@ -229,7 +224,6 @@ sap.ui.define(
|
|
|
229
224
|
* }
|
|
230
225
|
* </pre></code>
|
|
231
226
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
232
|
-
*
|
|
233
227
|
* @public
|
|
234
228
|
*/
|
|
235
229
|
TableAssertions.prototype.iCheckCells = function (vRowValues, mColumnStateMap) {
|
|
@@ -259,7 +253,6 @@ sap.ui.define(
|
|
|
259
253
|
* @param {string | sap.fe.test.api.ActionIdentifier} vActionIdentifier The identifier of the action, or its label
|
|
260
254
|
* @param {object} [mState] Defines the expected state of the button
|
|
261
255
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
262
|
-
*
|
|
263
256
|
* @public
|
|
264
257
|
*/
|
|
265
258
|
TableAssertions.prototype.iCheckAction = function (vActionIdentifier, mState) {
|
|
@@ -298,7 +291,6 @@ sap.ui.define(
|
|
|
298
291
|
*
|
|
299
292
|
* @param {object | string} vAction The label of the action, or its state
|
|
300
293
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
301
|
-
*
|
|
302
294
|
* @public
|
|
303
295
|
*/
|
|
304
296
|
TableAssertions.prototype.iCheckMenuAction = function (vAction) {
|
|
@@ -310,7 +302,6 @@ sap.ui.define(
|
|
|
310
302
|
*
|
|
311
303
|
* @param {object} [mState] Defines the expected state of the button
|
|
312
304
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
313
|
-
*
|
|
314
305
|
* @public
|
|
315
306
|
*/
|
|
316
307
|
TableAssertions.prototype.iCheckDelete = function (mState) {
|
|
@@ -323,7 +314,6 @@ sap.ui.define(
|
|
|
323
314
|
* @param {string} [sSearchText] The expected text in the search field
|
|
324
315
|
* @param {object} [mState] Defines the expected state of the search field
|
|
325
316
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
|
|
326
|
-
*
|
|
327
317
|
* @public
|
|
328
318
|
*/
|
|
329
319
|
TableAssertions.prototype.iCheckSearchField = function (sSearchText, mState) {
|
|
@@ -349,7 +339,6 @@ sap.ui.define(
|
|
|
349
339
|
*
|
|
350
340
|
* @param {object} [mState] Defines the expected state of the button
|
|
351
341
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
352
|
-
*
|
|
353
342
|
* @public
|
|
354
343
|
*/
|
|
355
344
|
TableAssertions.prototype.iCheckCreate = function (mState) {
|
|
@@ -360,7 +349,6 @@ sap.ui.define(
|
|
|
360
349
|
* Checks whether the paste button is available for the table.
|
|
361
350
|
*
|
|
362
351
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
363
|
-
*
|
|
364
352
|
* @public
|
|
365
353
|
*/
|
|
366
354
|
TableAssertions.prototype.iCheckPaste = function () {
|
|
@@ -372,7 +360,6 @@ sap.ui.define(
|
|
|
372
360
|
*
|
|
373
361
|
* @param {object} [mState] Defines the expected state of the button
|
|
374
362
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
375
|
-
*
|
|
376
363
|
* @public
|
|
377
364
|
*/
|
|
378
365
|
TableAssertions.prototype.iCheckFullScreen = function (mState) {
|
|
@@ -394,7 +381,6 @@ sap.ui.define(
|
|
|
394
381
|
* Checks whether the adaptation button is available for the table.
|
|
395
382
|
*
|
|
396
383
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
397
|
-
*
|
|
398
384
|
* @public
|
|
399
385
|
*/
|
|
400
386
|
TableAssertions.prototype.iCheckColumnAdaptation = function () {
|
|
@@ -405,7 +391,6 @@ sap.ui.define(
|
|
|
405
391
|
* Checks whether the sort button is available for the table.
|
|
406
392
|
*
|
|
407
393
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
408
|
-
*
|
|
409
394
|
* @public
|
|
410
395
|
*/
|
|
411
396
|
TableAssertions.prototype.iCheckColumnSorting = function () {
|
|
@@ -418,7 +403,6 @@ sap.ui.define(
|
|
|
418
403
|
* Checks whether the filter button is available for the table.
|
|
419
404
|
*
|
|
420
405
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
421
|
-
*
|
|
422
406
|
* @public
|
|
423
407
|
*/
|
|
424
408
|
TableAssertions.prototype.iCheckColumnFiltering = function () {
|
|
@@ -432,7 +416,6 @@ sap.ui.define(
|
|
|
432
416
|
* Checks whether the export button is available for the table.
|
|
433
417
|
*
|
|
434
418
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
435
|
-
*
|
|
436
419
|
* @public
|
|
437
420
|
*/
|
|
438
421
|
TableAssertions.prototype.iCheckExport = function () {
|
|
@@ -444,7 +427,6 @@ sap.ui.define(
|
|
|
444
427
|
*
|
|
445
428
|
* @param {object} [mState] Defines the expected state of the control
|
|
446
429
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
447
|
-
*
|
|
448
430
|
* @public
|
|
449
431
|
*/
|
|
450
432
|
TableAssertions.prototype.iCheckQuickFilter = function (mState) {
|
|
@@ -467,7 +449,6 @@ sap.ui.define(
|
|
|
467
449
|
* Checks whether the column adaptation dialog is open.
|
|
468
450
|
*
|
|
469
451
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
470
|
-
*
|
|
471
452
|
* @public
|
|
472
453
|
*/
|
|
473
454
|
TableAssertions.prototype.iCheckColumnAdaptationDialog = function () {
|
|
@@ -485,7 +466,6 @@ sap.ui.define(
|
|
|
485
466
|
* @param {string | sap.fe.test.api.ColumnIdentifier} vColumnIdentifier The identifier of the column, or its label
|
|
486
467
|
* @param {object} [mState] Defines the expected state of the field control in the adaptation dialog
|
|
487
468
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
488
|
-
*
|
|
489
469
|
* @public
|
|
490
470
|
*/
|
|
491
471
|
TableAssertions.prototype.iCheckAdaptationColumn = function (vColumnIdentifier, mState) {
|
|
@@ -509,7 +489,6 @@ sap.ui.define(
|
|
|
509
489
|
* @param {sap.ui.core.SortOrder} [sSortOrder] The sort order of the column, default is {@link sap.ui.core.SortOrder.Ascending}
|
|
510
490
|
* @param {boolean} [bCheckPersonalization] Defines if the order is checked via sorting dialog, or via the column itself
|
|
511
491
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
512
|
-
*
|
|
513
492
|
* @public
|
|
514
493
|
*/
|
|
515
494
|
TableAssertions.prototype.iCheckSortOrder = function (vColumnIdentifier, sSortOrder, bCheckPersonalization) {
|
|
@@ -545,7 +524,6 @@ sap.ui.define(
|
|
|
545
524
|
* @param {string | sap.fe.test.api.ColumnIdentifier} vColumnIdentifier The identifier of the field, or its label
|
|
546
525
|
* @param {object} [mState] Defines the expected state of the field control in the filter dialog
|
|
547
526
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
548
|
-
*
|
|
549
527
|
* @public
|
|
550
528
|
*/
|
|
551
529
|
TableAssertions.prototype.iCheckFilterField = function (vColumnIdentifier, mState) {
|
|
@@ -600,7 +578,6 @@ sap.ui.define(
|
|
|
600
578
|
*
|
|
601
579
|
* @param {object} [mProperty] Defines the expected properties of the messageStrip in the table
|
|
602
580
|
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
603
|
-
*
|
|
604
581
|
* @public
|
|
605
582
|
*/
|
|
606
583
|
TableAssertions.prototype.iCheckMessageStrip = function (mProperty) {
|
|
@@ -622,8 +599,8 @@ sap.ui.define(
|
|
|
622
599
|
|
|
623
600
|
/**
|
|
624
601
|
* Checks if the focus is on a table.
|
|
625
|
-
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
626
602
|
*
|
|
603
|
+
* @returns {object} The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
627
604
|
* @public
|
|
628
605
|
*/
|
|
629
606
|
TableAssertions.prototype.iSeeFocusOnHeader = function () {
|