@sapui5/types 1.120.8 → 1.120.10

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.
Files changed (49) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.esh.search.ui.d.ts +243 -227
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +149 -115
  6. package/types/sap.fe.macros.d.ts +38 -18
  7. package/types/sap.fe.navigation.d.ts +56 -21
  8. package/types/sap.fe.placeholder.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +16 -5
  10. package/types/sap.fe.test.d.ts +229 -7
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +3731 -1701
  13. package/types/sap.insights.d.ts +51 -43
  14. package/types/sap.m.d.ts +14 -3
  15. package/types/sap.makit.d.ts +1 -1
  16. package/types/sap.me.d.ts +1 -1
  17. package/types/sap.ndc.d.ts +1 -1
  18. package/types/sap.ovp.d.ts +9 -7
  19. package/types/sap.suite.ui.commons.d.ts +3007 -999
  20. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  21. package/types/sap.suite.ui.microchart.d.ts +1 -1
  22. package/types/sap.tnt.d.ts +1 -1
  23. package/types/sap.ui.codeeditor.d.ts +1 -1
  24. package/types/sap.ui.commons.d.ts +1 -1
  25. package/types/sap.ui.comp.d.ts +1 -1
  26. package/types/sap.ui.core.d.ts +1 -1
  27. package/types/sap.ui.dt.d.ts +1 -1
  28. package/types/sap.ui.export.d.ts +1 -1
  29. package/types/sap.ui.fl.d.ts +1 -1
  30. package/types/sap.ui.integration.d.ts +1 -1
  31. package/types/sap.ui.layout.d.ts +1 -1
  32. package/types/sap.ui.mdc.d.ts +2 -2
  33. package/types/sap.ui.richtexteditor.d.ts +1 -1
  34. package/types/sap.ui.rta.d.ts +1 -1
  35. package/types/sap.ui.suite.d.ts +1 -1
  36. package/types/sap.ui.support.d.ts +1 -1
  37. package/types/sap.ui.table.d.ts +9 -5
  38. package/types/sap.ui.testrecorder.d.ts +1 -1
  39. package/types/sap.ui.unified.d.ts +1 -1
  40. package/types/sap.ui.ux3.d.ts +1 -1
  41. package/types/sap.ui.vk.d.ts +2655 -738
  42. package/types/sap.ui.webc.common.d.ts +1 -1
  43. package/types/sap.ui.webc.fiori.d.ts +1 -1
  44. package/types/sap.ui.webc.main.d.ts +1 -1
  45. package/types/sap.uiext.inbox.d.ts +1 -1
  46. package/types/sap.ushell.d.ts +1 -1
  47. package/types/sap.ushell_abap.d.ts +1 -1
  48. package/types/sap.uxap.d.ts +1 -1
  49. package/types/sap.viz.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.4
1
+ // For Library Version: 1.120.7
2
2
 
3
3
  declare module "sap/fe/test/library" {}
4
4
 
@@ -141,36 +141,42 @@ declare module "sap/fe/test/api/TableAPI" {
141
141
  /**
142
142
  * Confirms and closes the adaptation dialog of the table.
143
143
  *
144
+ *
144
145
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
145
146
  */
146
147
  iConfirmColumnAdaptation(): object;
147
148
  /**
148
149
  * Confirms and closes the sorting dialog of the table.
149
150
  *
151
+ *
150
152
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
151
153
  */
152
154
  iConfirmColumnSorting(): object;
153
155
  /**
154
156
  * Confirms and closes the filtering dialog of the table.
155
157
  *
158
+ *
156
159
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
157
160
  */
158
161
  iConfirmFilterDialog(): object;
159
162
  /**
160
163
  * Opens the column adaptation dialog of the table.
161
164
  *
165
+ *
162
166
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
163
167
  */
164
168
  iOpenColumnAdaptation(): object;
165
169
  /**
166
170
  * Opens the sorting dialog of the table.
167
171
  *
172
+ *
168
173
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
169
174
  */
170
175
  iOpenColumnSorting(): object;
171
176
  /**
172
177
  * Opens the filtering dialog of the table.
173
178
  *
179
+ *
174
180
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
175
181
  */
176
182
  iOpenFilterDialog(): object;
@@ -186,12 +192,14 @@ declare module "sap/fe/test/api/DialogActions" {
186
192
  /**
187
193
  * Cancels the dialog by clicking the corresponding button (for example, 'Cancel').
188
194
  *
195
+ *
189
196
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
190
197
  */
191
198
  iCancel(): object;
192
199
  /**
193
200
  * Changes the content of a field in a dialog.
194
201
  *
202
+ *
195
203
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
196
204
  */
197
205
  iChangeDialogField(
@@ -211,12 +219,14 @@ declare module "sap/fe/test/api/DialogActions" {
211
219
  /**
212
220
  * Closes the dialog by pressing the 'Escape' key.
213
221
  *
222
+ *
214
223
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
215
224
  */
216
225
  iClose(): object;
217
226
  /**
218
227
  * Confirms the dialog by clicking the corresponding button (for example, 'OK').
219
228
  *
229
+ *
220
230
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
221
231
  */
222
232
  iConfirm(): object;
@@ -235,6 +245,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
235
245
  /**
236
246
  * Checks the content and state of a field in an action parameter dialog.
237
247
  *
248
+ *
238
249
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
239
250
  */
240
251
  iCheckActionParameterDialogField(
@@ -260,6 +271,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
260
271
  /**
261
272
  * Checks the cancellation button of the dialog.
262
273
  *
274
+ *
263
275
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
264
276
  */
265
277
  iCheckCancel(
@@ -271,6 +283,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
271
283
  /**
272
284
  * Checks the confirmation button of the dialog.
273
285
  *
286
+ *
274
287
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
275
288
  */
276
289
  iCheckConfirm(
@@ -282,6 +295,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
282
295
  /**
283
296
  * Checks the content and state of a field in a dialog.
284
297
  *
298
+ *
285
299
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
286
300
  */
287
301
  iCheckDialogField(
@@ -307,6 +321,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
307
321
  /**
308
322
  * Checks the dialog.
309
323
  *
324
+ *
310
325
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
311
326
  */
312
327
  iCheckState(
@@ -327,6 +342,7 @@ declare module "sap/fe/test/api/DialogCreateActions" {
327
342
  /**
328
343
  * Executes the `Create` action on the create dialog.
329
344
  *
345
+ *
330
346
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
331
347
  */
332
348
  iExecuteCreate(): object;
@@ -342,6 +358,7 @@ declare module "sap/fe/test/api/DialogCreateAssertions" {
342
358
  /**
343
359
  * Checks the `Create` action on the dialog.
344
360
  *
361
+ *
345
362
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
346
363
  */
347
364
  iCheckCreate(
@@ -362,18 +379,21 @@ declare module "sap/fe/test/api/DialogMessageActions" {
362
379
  /**
363
380
  * Executes the `Back` action on the message dialog.
364
381
  *
382
+ *
365
383
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
366
384
  */
367
385
  iExecuteBack(): object;
368
386
  /**
369
387
  * Executes the `Refresh` action on the message dialog.
370
388
  *
389
+ *
371
390
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
372
391
  */
373
392
  iExecuteRefresh(): object;
374
393
  /**
375
394
  * Selects the specified entry in the draft data loss popup.
376
395
  *
396
+ *
377
397
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
378
398
  */
379
399
  iSelectDraftDataLossOption(optionKey: any): object;
@@ -389,6 +409,7 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
389
409
  /**
390
410
  * Checks the `Back` action on the message dialog.
391
411
  *
412
+ *
392
413
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
393
414
  */
394
415
  iCheckBack(
@@ -400,6 +421,7 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
400
421
  /**
401
422
  * Checks whether a certain message is shown in the dialog.
402
423
  *
424
+ *
403
425
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
404
426
  */
405
427
  iCheckMessage(
@@ -411,6 +433,7 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
411
433
  /**
412
434
  * Checks the `Refresh` action on the dialog.
413
435
  *
436
+ *
414
437
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
415
438
  */
416
439
  iCheckRefresh(
@@ -466,6 +489,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
466
489
  /**
467
490
  * Adds a new condition.
468
491
  *
492
+ *
469
493
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
470
494
  */
471
495
  iAddCondition(
@@ -482,6 +506,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
482
506
  /**
483
507
  * Changes an existing condition.
484
508
  *
509
+ *
485
510
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
486
511
  */
487
512
  iChangeCondition(
@@ -502,6 +527,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
502
527
  /**
503
528
  * Changes the value of a filter field.
504
529
  *
530
+ *
505
531
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
506
532
  */
507
533
  iChangeFilterField(
@@ -521,6 +547,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
521
547
  /**
522
548
  * Changes the value of the search field.
523
549
  *
550
+ *
524
551
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
525
552
  */
526
553
  iChangeSearchField(
@@ -532,30 +559,35 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
532
559
  /**
533
560
  * Starts the search.
534
561
  *
562
+ *
535
563
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
536
564
  */
537
565
  iExecuteSearch(): object;
538
566
  /**
539
567
  * Clicks the `Hide/Show Filters` button.
540
568
  *
569
+ *
541
570
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
542
571
  */
543
572
  iExecuteShowHideFilters(): object;
544
573
  /**
545
574
  * Navigates to the `Define Conditions` tab.
546
575
  *
576
+ *
547
577
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
548
578
  */
549
579
  iGoToDefineConditions(): object;
550
580
  /**
551
581
  * Navigates to the `Search and Select` tab.
552
582
  *
583
+ *
553
584
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
554
585
  */
555
586
  iGoToSearchAndSelect(): object;
556
587
  /**
557
588
  * Removes an existing condition.
558
589
  *
590
+ *
559
591
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
560
592
  */
561
593
  iRemoveCondition(
@@ -567,12 +599,14 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
567
599
  /**
568
600
  * Resets the search field value.
569
601
  *
602
+ *
570
603
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
571
604
  */
572
605
  iResetSearchField(): object;
573
606
  /**
574
607
  * Selects the specified rows.
575
608
  *
609
+ *
576
610
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
577
611
  */
578
612
  iSelectRows(
@@ -607,6 +641,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
607
641
  * Checks the `Define conditions` tab in a value help dialog. Please be aware that the tab control of the
608
642
  * toolbar is checked.
609
643
  *
644
+ *
610
645
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
611
646
  */
612
647
  iCheckDefineConditions(
@@ -618,6 +653,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
618
653
  /**
619
654
  * Checks the filter bar.
620
655
  *
656
+ *
621
657
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
622
658
  */
623
659
  iCheckFilterBar(
@@ -629,6 +665,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
629
665
  /**
630
666
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
631
667
  *
668
+ *
632
669
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
633
670
  */
634
671
  iCheckFilterField(
@@ -655,6 +692,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
655
692
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
656
693
  * row. If `mState` is provided, the row must be in the given state.
657
694
  *
695
+ *
658
696
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
659
697
  */
660
698
  iCheckRows(
@@ -681,6 +719,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
681
719
  * Checks the `Search and Select` tab in a value help dialog. Please be aware that the tab control of the
682
720
  * toolbar is checked.
683
721
  *
722
+ *
684
723
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
685
724
  */
686
725
  iCheckSearchAndSelect(
@@ -693,6 +732,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
693
732
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
694
733
  * text is not validated.
695
734
  *
735
+ *
696
736
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
697
737
  */
698
738
  iCheckSearchField(
@@ -708,6 +748,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
708
748
  /**
709
749
  * Checks the dialog.
710
750
  *
751
+ *
711
752
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
712
753
  */
713
754
  iCheckState(
@@ -719,6 +760,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
719
760
  /**
720
761
  * Checks the table.
721
762
  *
763
+ *
722
764
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
723
765
  */
724
766
  iCheckTable(
@@ -777,6 +819,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
777
819
  /**
778
820
  * Adds a field as a filter field.
779
821
  *
822
+ *
780
823
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
781
824
  */
782
825
  iAddAdaptationFilterField(
@@ -788,6 +831,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
788
831
  /**
789
832
  * Changes the editing status filter field.
790
833
  *
834
+ *
791
835
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
792
836
  */
793
837
  iChangeEditingStatus(
@@ -799,6 +843,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
799
843
  /**
800
844
  * Changes the value of the defined filter field.
801
845
  *
846
+ *
802
847
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
803
848
  */
804
849
  iChangeFilterField(
@@ -818,6 +863,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
818
863
  /**
819
864
  * Changes the search field.
820
865
  *
866
+ *
821
867
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
822
868
  */
823
869
  iChangeSearchField(
@@ -829,6 +875,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
829
875
  /**
830
876
  * Executes a keyboard shortcut.
831
877
  *
878
+ *
832
879
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
833
880
  */
834
881
  iExecuteKeyboardShortcut(
@@ -844,12 +891,14 @@ declare module "sap/fe/test/api/FilterBarActions" {
844
891
  /**
845
892
  * Executes the search with the current filters.
846
893
  *
894
+ *
847
895
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
848
896
  */
849
897
  iExecuteSearch(): object;
850
898
  /**
851
899
  * Opens the value help of the given field.
852
900
  *
901
+ *
853
902
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
854
903
  */
855
904
  iOpenValueHelp(
@@ -861,6 +910,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
861
910
  /**
862
911
  * Removes a field as a filter field.
863
912
  *
913
+ *
864
914
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
865
915
  */
866
916
  iRemoveAdaptationFilterField(
@@ -872,12 +922,14 @@ declare module "sap/fe/test/api/FilterBarActions" {
872
922
  /**
873
923
  * Resets the search field.
874
924
  *
925
+ *
875
926
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
876
927
  */
877
928
  iResetSearchField(): object;
878
929
  /**
879
930
  * Saves a variant under the given name, or overwrites the current variant.
880
931
  *
932
+ *
881
933
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
882
934
  */
883
935
  iSaveVariant(
@@ -897,6 +949,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
897
949
  /**
898
950
  * Selects the chosen variant.
899
951
  *
952
+ *
900
953
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
901
954
  */
902
955
  iSelectVariant(
@@ -915,12 +968,14 @@ declare module "sap/fe/test/api/FilterBarAPI" {
915
968
  /**
916
969
  * Confirms the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
917
970
  *
971
+ *
918
972
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
919
973
  */
920
974
  iConfirmFilterAdaptation(): object;
921
975
  /**
922
976
  * Opens the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
923
977
  *
978
+ *
924
979
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
925
980
  */
926
981
  iOpenFilterAdaptation(): object;
@@ -950,6 +1005,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
950
1005
  /**
951
1006
  * Checks a field in the adaptation dialog.
952
1007
  *
1008
+ *
953
1009
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
954
1010
  */
955
1011
  iCheckAdaptationFilterField(
@@ -965,6 +1021,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
965
1021
  /**
966
1022
  * Check the filter field for the editing status.
967
1023
  *
1024
+ *
968
1025
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
969
1026
  */
970
1027
  iCheckEditingStatus(
@@ -980,12 +1037,14 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
980
1037
  /**
981
1038
  * Checks whether the filter adaptation dialog is open.
982
1039
  *
1040
+ *
983
1041
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
984
1042
  */
985
1043
  iCheckFilterAdaptation(): object;
986
1044
  /**
987
1045
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
988
1046
  *
1047
+ *
989
1048
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
990
1049
  */
991
1050
  iCheckFilterField(
@@ -1009,6 +1068,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1009
1068
  /**
1010
1069
  * Checks the search button.
1011
1070
  *
1071
+ *
1012
1072
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1013
1073
  */
1014
1074
  iCheckSearch(
@@ -1021,6 +1081,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1021
1081
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
1022
1082
  * text is not validated.
1023
1083
  *
1084
+ *
1024
1085
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1025
1086
  */
1026
1087
  iCheckSearchField(
@@ -1036,6 +1097,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1036
1097
  /**
1037
1098
  * Checks the filter bar.
1038
1099
  *
1100
+ *
1039
1101
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1040
1102
  */
1041
1103
  iCheckState(
@@ -1047,6 +1109,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1047
1109
  /**
1048
1110
  * Checks if the focus is on the filter field.
1049
1111
  *
1112
+ *
1050
1113
  * @returns The result of the {@link sa p.ui.test.Opa5#waitFor} function, to be used for chained statements
1051
1114
  */
1052
1115
  iSeeFocusOnFilterField(
@@ -1058,6 +1121,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1058
1121
  /**
1059
1122
  * Checks if the focus is on the Go Button of the filter bar.
1060
1123
  *
1124
+ *
1061
1125
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1062
1126
  */
1063
1127
  iSeeFocusOnGoButton(): object;
@@ -1073,6 +1137,7 @@ declare module "sap/fe/test/api/FooterActionsBase" {
1073
1137
  /**
1074
1138
  * Executes a footer action.
1075
1139
  *
1140
+ *
1076
1141
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1077
1142
  */
1078
1143
  iExecuteAction(
@@ -1093,24 +1158,28 @@ declare module "sap/fe/test/api/FooterActionsOP" {
1093
1158
  /**
1094
1159
  * Confirms the Cancel action when user clicks `Cancel` in draft mode.
1095
1160
  *
1161
+ *
1096
1162
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1097
1163
  */
1098
1164
  iConfirmCancel(): object;
1099
1165
  /**
1100
1166
  * Executes the Apply action in the footer bar of a sub-object page.
1101
1167
  *
1168
+ *
1102
1169
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1103
1170
  */
1104
1171
  iExecuteApply(): object;
1105
1172
  /**
1106
1173
  * Executes the Cancel action in the footer bar of the object page.
1107
1174
  *
1175
+ *
1108
1176
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1109
1177
  */
1110
1178
  iExecuteCancel(): object;
1111
1179
  /**
1112
1180
  * Executes the Save or Create action in the footer bar of the object page.
1113
1181
  *
1182
+ *
1114
1183
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1115
1184
  */
1116
1185
  iExecuteSave(): object;
@@ -1126,6 +1195,7 @@ declare module "sap/fe/test/api/FooterAssertionsBase" {
1126
1195
  /**
1127
1196
  * Checks the state of an action in the footer bar.
1128
1197
  *
1198
+ *
1129
1199
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1130
1200
  */
1131
1201
  iCheckAction(
@@ -1141,6 +1211,7 @@ declare module "sap/fe/test/api/FooterAssertionsBase" {
1141
1211
  /**
1142
1212
  * Checks the state of the footer bar.
1143
1213
  *
1214
+ *
1144
1215
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1145
1216
  */
1146
1217
  iCheckState(
@@ -1161,6 +1232,7 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1161
1232
  /**
1162
1233
  * Checks the state of the Apply action in the footer bar.
1163
1234
  *
1235
+ *
1164
1236
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1165
1237
  */
1166
1238
  iCheckApply(
@@ -1172,6 +1244,7 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1172
1244
  /**
1173
1245
  * Checks the state of the Cancel action in the footer bar.
1174
1246
  *
1247
+ *
1175
1248
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1176
1249
  */
1177
1250
  iCheckCancel(
@@ -1183,18 +1256,21 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1183
1256
  /**
1184
1257
  * Checks for draft state 'Clear' in the footer bar.
1185
1258
  *
1259
+ *
1186
1260
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1187
1261
  */
1188
1262
  iCheckDraftStateClear(): object;
1189
1263
  /**
1190
1264
  * Checks for draft state 'Saved' in the footer bar.
1191
1265
  *
1266
+ *
1192
1267
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1193
1268
  */
1194
1269
  iCheckDraftStateSaved(): object;
1195
1270
  /**
1196
1271
  * Checks the state of the Save or Create action in the footer bar.
1197
1272
  *
1273
+ *
1198
1274
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1199
1275
  */
1200
1276
  iCheckSave(
@@ -1217,6 +1293,7 @@ declare module "sap/fe/test/api/FormActions" {
1217
1293
  /**
1218
1294
  * Changes the value of a field within a form.
1219
1295
  *
1296
+ *
1220
1297
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1221
1298
  */
1222
1299
  iChangeField(
@@ -1232,6 +1309,7 @@ declare module "sap/fe/test/api/FormActions" {
1232
1309
  /**
1233
1310
  * Toggles the value of a checkbox within a form.
1234
1311
  *
1312
+ *
1235
1313
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1236
1314
  */
1237
1315
  iClickCheckBox(
@@ -1243,6 +1321,7 @@ declare module "sap/fe/test/api/FormActions" {
1243
1321
  /**
1244
1322
  * Clicks a link within a form.
1245
1323
  *
1324
+ *
1246
1325
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1247
1326
  */
1248
1327
  iClickLink(
@@ -1254,6 +1333,7 @@ declare module "sap/fe/test/api/FormActions" {
1254
1333
  /**
1255
1334
  * Executes an action assigned to a form in a subsection.
1256
1335
  *
1336
+ *
1257
1337
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1258
1338
  */
1259
1339
  iExecuteAction(
@@ -1265,18 +1345,21 @@ declare module "sap/fe/test/api/FormActions" {
1265
1345
  /**
1266
1346
  * Executes the Show Less action of a form in a subsection.
1267
1347
  *
1348
+ *
1268
1349
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1269
1350
  */
1270
1351
  iExecuteShowLess(): object;
1271
1352
  /**
1272
1353
  * Executes the Show More action of a form in a subsection.
1273
1354
  *
1355
+ *
1274
1356
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1275
1357
  */
1276
1358
  iExecuteShowMore(): object;
1277
1359
  /**
1278
1360
  * Opens the value help of the given field.
1279
1361
  *
1362
+ *
1280
1363
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
1281
1364
  */
1282
1365
  iOpenValueHelp(
@@ -1322,6 +1405,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1322
1405
  /**
1323
1406
  * Checks the state of an action in a subsection.
1324
1407
  *
1408
+ *
1325
1409
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1326
1410
  */
1327
1411
  iCheckAction(
@@ -1337,6 +1421,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1337
1421
  /**
1338
1422
  * Checks the content and state of a field within a form.
1339
1423
  *
1424
+ *
1340
1425
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1341
1426
  */
1342
1427
  iCheckField(
@@ -1363,6 +1448,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1363
1448
  /**
1364
1449
  * Checks the field is a link with the given text and state.
1365
1450
  *
1451
+ *
1366
1452
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1367
1453
  */
1368
1454
  iCheckLink(
@@ -1382,6 +1468,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1382
1468
  /**
1383
1469
  * Checks the Show Less action of a form in a subsection.
1384
1470
  *
1471
+ *
1385
1472
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1386
1473
  */
1387
1474
  iCheckShowLess(
@@ -1393,6 +1480,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1393
1480
  /**
1394
1481
  * Checks the Show More action of a form in a subsection.
1395
1482
  *
1483
+ *
1396
1484
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1397
1485
  */
1398
1486
  iCheckShowMore(
@@ -1404,6 +1492,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1404
1492
  /**
1405
1493
  * Checks the state of the form.
1406
1494
  *
1495
+ *
1407
1496
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1408
1497
  */
1409
1498
  iCheckState(
@@ -1424,6 +1513,7 @@ declare module "sap/fe/test/api/HeaderActions" {
1424
1513
  /**
1425
1514
  * Executes an action in the header toolbar of an object page.
1426
1515
  *
1516
+ *
1427
1517
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1428
1518
  */
1429
1519
  iExecuteAction(
@@ -1435,24 +1525,28 @@ declare module "sap/fe/test/api/HeaderActions" {
1435
1525
  /**
1436
1526
  * Executes the Delete action in the header toolbar of an object page.
1437
1527
  *
1528
+ *
1438
1529
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1439
1530
  */
1440
1531
  iExecuteDelete(): object;
1441
1532
  /**
1442
1533
  * Executes the Draft/Saved Version action in the header toolbar of an object page.
1443
1534
  *
1535
+ *
1444
1536
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1445
1537
  */
1446
1538
  iExecuteDraftAndSavedVersionSwitch(): object;
1447
1539
  /**
1448
1540
  * Executes the Edit action in the header toolbar of an object page.
1449
1541
  *
1542
+ *
1450
1543
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1451
1544
  */
1452
1545
  iExecuteEdit(): object;
1453
1546
  /**
1454
1547
  * Executes an action in the drop-down menu that is currently open.
1455
1548
  *
1549
+ *
1456
1550
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1457
1551
  */
1458
1552
  iExecuteMenuAction(
@@ -1464,24 +1558,28 @@ declare module "sap/fe/test/api/HeaderActions" {
1464
1558
  /**
1465
1559
  * Navigates to the next sub-object page.
1466
1560
  *
1561
+ *
1467
1562
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1468
1563
  */
1469
1564
  iExecutePaginatorDown(): object;
1470
1565
  /**
1471
1566
  * Navigates to the previous sub-object page.
1472
1567
  *
1568
+ *
1473
1569
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1474
1570
  */
1475
1571
  iExecutePaginatorUp(): object;
1476
1572
  /**
1477
1573
  * Executes the Related Apps action in the header toolbar of an object page.
1478
1574
  *
1575
+ *
1479
1576
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1480
1577
  */
1481
1578
  iExecuteRelatedApps(): object;
1482
1579
  /**
1483
1580
  * Executes an action in the selection list that is currently open.
1484
1581
  *
1582
+ *
1485
1583
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1486
1584
  */
1487
1585
  iExecuteSelectListAction(
@@ -1502,6 +1600,7 @@ declare module "sap/fe/test/api/HeaderActionsLR" {
1502
1600
  /**
1503
1601
  * Executes an action in the header toolbar of a list report.
1504
1602
  *
1603
+ *
1505
1604
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1506
1605
  */
1507
1606
  iExecuteAction(
@@ -1524,6 +1623,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1524
1623
  /**
1525
1624
  * Checks an action in the header toolbar.
1526
1625
  *
1626
+ *
1527
1627
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1528
1628
  */
1529
1629
  iCheckAction(
@@ -1539,6 +1639,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1539
1639
  /**
1540
1640
  * Checks the `Delete` action in the header toolbar.
1541
1641
  *
1642
+ *
1542
1643
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1543
1644
  */
1544
1645
  iCheckDelete(
@@ -1550,6 +1651,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1550
1651
  /**
1551
1652
  * Checks the `Edit` action in the header toolbar.
1552
1653
  *
1654
+ *
1553
1655
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1554
1656
  */
1555
1657
  iCheckEdit(
@@ -1561,6 +1663,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1561
1663
  /**
1562
1664
  * Checks a field within a field group in the object page header.
1563
1665
  *
1666
+ *
1564
1667
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1565
1668
  */
1566
1669
  iCheckFieldInFieldGroup(
@@ -1588,6 +1691,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1588
1691
  /**
1589
1692
  * Checks the custom facet in the object page header.
1590
1693
  *
1694
+ *
1591
1695
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1592
1696
  */
1593
1697
  iCheckHeaderFacet(
@@ -1603,6 +1707,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1603
1707
  /**
1604
1708
  * Checks an action in the popover that is currently open.
1605
1709
  *
1710
+ *
1606
1711
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1607
1712
  */
1608
1713
  iCheckMenuAction(
@@ -1614,6 +1719,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1614
1719
  /**
1615
1720
  * Checks the paginator down button.
1616
1721
  *
1722
+ *
1617
1723
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1618
1724
  */
1619
1725
  iCheckPaginatorDown(
@@ -1625,6 +1731,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1625
1731
  /**
1626
1732
  * Checks the paginator up button.
1627
1733
  *
1734
+ *
1628
1735
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1629
1736
  */
1630
1737
  iCheckPaginatorUp(
@@ -1636,6 +1743,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1636
1743
  /**
1637
1744
  * Checks the `Related Apps` action in the header toolbar.
1638
1745
  *
1746
+ *
1639
1747
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1640
1748
  */
1641
1749
  iCheckRelatedApps(
@@ -1647,6 +1755,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1647
1755
  /**
1648
1756
  * Checks the `Save as Tile` action.
1649
1757
  *
1758
+ *
1650
1759
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1651
1760
  */
1652
1761
  iCheckSaveAsTile(
@@ -1658,6 +1767,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1658
1767
  /**
1659
1768
  * Checks `Send Email` action.
1660
1769
  *
1770
+ *
1661
1771
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1662
1772
  */
1663
1773
  iCheckSendEmail(
@@ -1671,6 +1781,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1671
1781
  *
1672
1782
  * If either title or description is `undefined`, it will not be checked.
1673
1783
  *
1784
+ *
1674
1785
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1675
1786
  */
1676
1787
  iCheckTitle(
@@ -1695,6 +1806,7 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1695
1806
  /**
1696
1807
  * Checks an action of the header toolbar.
1697
1808
  *
1809
+ *
1698
1810
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1699
1811
  */
1700
1812
  iCheckAction(
@@ -1710,6 +1822,7 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1710
1822
  /**
1711
1823
  * Checks the `Save as Tile` action.
1712
1824
  *
1825
+ *
1713
1826
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1714
1827
  */
1715
1828
  iCheckSaveAsTile(
@@ -1721,6 +1834,7 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1721
1834
  /**
1722
1835
  * Checks the `Send Email` action.
1723
1836
  *
1837
+ *
1724
1838
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1725
1839
  */
1726
1840
  iCheckSendEmail(
@@ -1768,6 +1882,7 @@ declare module "sap/fe/test/api/TableActions" {
1768
1882
  /**
1769
1883
  * Adds a field as a column to the table.
1770
1884
  *
1885
+ *
1771
1886
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1772
1887
  */
1773
1888
  iAddAdaptationColumn(
@@ -1779,6 +1894,7 @@ declare module "sap/fe/test/api/TableActions" {
1779
1894
  /**
1780
1895
  * Aggregates the table entries by the specified column.
1781
1896
  *
1897
+ *
1782
1898
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1783
1899
  */
1784
1900
  iAggregateByColumn(
@@ -1795,6 +1911,7 @@ declare module "sap/fe/test/api/TableActions" {
1795
1911
  /**
1796
1912
  * Adds a filter condition to the filter field.
1797
1913
  *
1914
+ *
1798
1915
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1799
1916
  */
1800
1917
  iChangeFilterField(
@@ -1817,6 +1934,7 @@ declare module "sap/fe/test/api/TableActions" {
1817
1934
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1818
1935
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1819
1936
  *
1937
+ *
1820
1938
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1821
1939
  */
1822
1940
  iChangeRow(
@@ -1847,6 +1965,7 @@ declare module "sap/fe/test/api/TableActions" {
1847
1965
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1848
1966
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1849
1967
  *
1968
+ *
1850
1969
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1851
1970
  */
1852
1971
  iChangeRow(
@@ -1863,6 +1982,7 @@ declare module "sap/fe/test/api/TableActions" {
1863
1982
  /**
1864
1983
  * Changes the search field.
1865
1984
  *
1985
+ *
1866
1986
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1867
1987
  */
1868
1988
  iChangeSearchField(
@@ -1874,6 +1994,7 @@ declare module "sap/fe/test/api/TableActions" {
1874
1994
  /**
1875
1995
  * Adds a field to the sorting of the table via the sort dialog.
1876
1996
  *
1997
+ *
1877
1998
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1878
1999
  */
1879
2000
  iChangeSortOrder(
@@ -1889,6 +2010,7 @@ declare module "sap/fe/test/api/TableActions" {
1889
2010
  /**
1890
2011
  * Collapses a row corresponding to a visual group.
1891
2012
  *
2013
+ *
1892
2014
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1893
2015
  */
1894
2016
  iCollapseGroupRow(
@@ -1904,6 +2026,7 @@ declare module "sap/fe/test/api/TableActions" {
1904
2026
  /**
1905
2027
  * Executes an action on the table.
1906
2028
  *
2029
+ *
1907
2030
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1908
2031
  */
1909
2032
  iExecuteAction(
@@ -1915,24 +2038,28 @@ declare module "sap/fe/test/api/TableActions" {
1915
2038
  /**
1916
2039
  * Executes the `Create` action on the table.
1917
2040
  *
2041
+ *
1918
2042
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1919
2043
  */
1920
2044
  iExecuteCreate(): object;
1921
2045
  /**
1922
2046
  * Executes the `Delete` action on the table.
1923
2047
  *
2048
+ *
1924
2049
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1925
2050
  */
1926
2051
  iExecuteDelete(): object;
1927
2052
  /**
1928
2053
  * Executes the `Fullscreen` action on the table.
1929
2054
  *
2055
+ *
1930
2056
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1931
2057
  */
1932
2058
  iExecuteFullScreen(): object;
1933
2059
  /**
1934
2060
  * Executes an action that is available in a certain column within a table row.
1935
2061
  *
2062
+ *
1936
2063
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1937
2064
  */
1938
2065
  iExecuteInlineAction(
@@ -1955,6 +2082,7 @@ declare module "sap/fe/test/api/TableActions" {
1955
2082
  /**
1956
2083
  * Executes an action that is available in a certain column within a table row.
1957
2084
  *
2085
+ *
1958
2086
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1959
2087
  */
1960
2088
  iExecuteInlineAction(
@@ -1966,6 +2094,7 @@ declare module "sap/fe/test/api/TableActions" {
1966
2094
  /**
1967
2095
  * Executes the action to create a row in the table.
1968
2096
  *
2097
+ *
1969
2098
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1970
2099
  */
1971
2100
  iExecuteInlineCreate(): object;
@@ -1974,6 +2103,7 @@ declare module "sap/fe/test/api/TableActions" {
1974
2103
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
1975
2104
  * is executed on table cell level.
1976
2105
  *
2106
+ *
1977
2107
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1978
2108
  */
1979
2109
  iExecuteKeyboardShortcut(
@@ -2002,6 +2132,7 @@ declare module "sap/fe/test/api/TableActions" {
2002
2132
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
2003
2133
  * is executed on table cell level.
2004
2134
  *
2135
+ *
2005
2136
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2006
2137
  */
2007
2138
  iExecuteKeyboardShortcut(
@@ -2017,6 +2148,7 @@ declare module "sap/fe/test/api/TableActions" {
2017
2148
  /**
2018
2149
  * Executes an action form the drop-down menu that is currently open.
2019
2150
  *
2151
+ *
2020
2152
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2021
2153
  */
2022
2154
  iExecuteMenuAction(
@@ -2028,6 +2160,7 @@ declare module "sap/fe/test/api/TableActions" {
2028
2160
  /**
2029
2161
  * Executes the `Show/Hide details` action on the table.
2030
2162
  *
2163
+ *
2031
2164
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2032
2165
  */
2033
2166
  iExecuteShowHideDetails(
@@ -2040,6 +2173,7 @@ declare module "sap/fe/test/api/TableActions" {
2040
2173
  /**
2041
2174
  * Expands a row corresponding to a visual group.
2042
2175
  *
2176
+ *
2043
2177
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2044
2178
  */
2045
2179
  iExpandGroupRow(
@@ -2055,6 +2189,7 @@ declare module "sap/fe/test/api/TableActions" {
2055
2189
  /**
2056
2190
  * Groups the table entries by the specified column.
2057
2191
  *
2192
+ *
2058
2193
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2059
2194
  */
2060
2195
  iGroupByColumn(
@@ -2071,6 +2206,7 @@ declare module "sap/fe/test/api/TableActions" {
2071
2206
  /**
2072
2207
  * Pastes data into the table.
2073
2208
  *
2209
+ *
2074
2210
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2075
2211
  */
2076
2212
  iPasteData(
@@ -2082,6 +2218,7 @@ declare module "sap/fe/test/api/TableActions" {
2082
2218
  /**
2083
2219
  * Presses the control in the table cell.
2084
2220
  *
2221
+ *
2085
2222
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2086
2223
  */
2087
2224
  iPressCell(
@@ -2104,6 +2241,7 @@ declare module "sap/fe/test/api/TableActions" {
2104
2241
  /**
2105
2242
  * Presses the control in the table cell.
2106
2243
  *
2244
+ *
2107
2245
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2108
2246
  */
2109
2247
  iPressCell(
@@ -2115,6 +2253,7 @@ declare module "sap/fe/test/api/TableActions" {
2115
2253
  /**
2116
2254
  * Clicks the specified row.
2117
2255
  *
2256
+ *
2118
2257
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2119
2258
  */
2120
2259
  iPressRow(
@@ -2133,6 +2272,7 @@ declare module "sap/fe/test/api/TableActions" {
2133
2272
  /**
2134
2273
  * Removes a field as a column from the table.
2135
2274
  *
2275
+ *
2136
2276
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2137
2277
  */
2138
2278
  iRemoveAdaptationColumn(
@@ -2144,6 +2284,7 @@ declare module "sap/fe/test/api/TableActions" {
2144
2284
  /**
2145
2285
  * Removes the variant of the given name.
2146
2286
  *
2287
+ *
2147
2288
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2148
2289
  */
2149
2290
  iRemoveVariant(
@@ -2155,12 +2296,14 @@ declare module "sap/fe/test/api/TableActions" {
2155
2296
  /**
2156
2297
  * Resets the search field.
2157
2298
  *
2299
+ *
2158
2300
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2159
2301
  */
2160
2302
  iResetSearchField(): object;
2161
2303
  /**
2162
2304
  * Saves a variant under the given name, or overwrites the current one.
2163
2305
  *
2306
+ *
2164
2307
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2165
2308
  */
2166
2309
  iSaveVariant(
@@ -2172,12 +2315,14 @@ declare module "sap/fe/test/api/TableActions" {
2172
2315
  /**
2173
2316
  * Selects all rows in a table.
2174
2317
  *
2318
+ *
2175
2319
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2176
2320
  */
2177
2321
  iSelectAllRows(): object;
2178
2322
  /**
2179
2323
  * Selects a quick-filter item on the table.
2180
2324
  *
2325
+ *
2181
2326
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2182
2327
  */
2183
2328
  iSelectQuickFilterItem(
@@ -2196,6 +2341,7 @@ declare module "sap/fe/test/api/TableActions" {
2196
2341
  /**
2197
2342
  * Selects the specified rows.
2198
2343
  *
2344
+ *
2199
2345
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2200
2346
  */
2201
2347
  iSelectRows(
@@ -2218,6 +2364,7 @@ declare module "sap/fe/test/api/TableActions" {
2218
2364
  /**
2219
2365
  * Selects the chosen variant.
2220
2366
  *
2367
+ *
2221
2368
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2222
2369
  */
2223
2370
  iSelectVariant(
@@ -2229,6 +2376,7 @@ declare module "sap/fe/test/api/TableActions" {
2229
2376
  /**
2230
2377
  * Sets the variant as the default.
2231
2378
  *
2379
+ *
2232
2380
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2233
2381
  */
2234
2382
  iSetDefaultVariant(
@@ -2241,6 +2389,7 @@ declare module "sap/fe/test/api/TableActions" {
2241
2389
  /**
2242
2390
  * Sorts the table entries by the specified column.
2243
2391
  *
2392
+ *
2244
2393
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2245
2394
  */
2246
2395
  iSortByColumn(
@@ -2282,6 +2431,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2282
2431
  /**
2283
2432
  * Checks the state of a table action.
2284
2433
  *
2434
+ *
2285
2435
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2286
2436
  */
2287
2437
  iCheckAction(
@@ -2297,6 +2447,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2297
2447
  /**
2298
2448
  * Checks a field in the adaptation dialog.
2299
2449
  *
2450
+ *
2300
2451
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2301
2452
  */
2302
2453
  iCheckAdaptationColumn(
@@ -2312,6 +2463,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2312
2463
  /**
2313
2464
  * Checks the state of the cells of a table.
2314
2465
  *
2466
+ *
2315
2467
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2316
2468
  */
2317
2469
  iCheckCells(
@@ -2342,6 +2494,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2342
2494
  /**
2343
2495
  * Checks the state of the cells of a table.
2344
2496
  *
2497
+ *
2345
2498
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2346
2499
  */
2347
2500
  iCheckCells(
@@ -2361,24 +2514,28 @@ declare module "sap/fe/test/api/TableAssertions" {
2361
2514
  /**
2362
2515
  * Checks whether the adaptation button is available for the table.
2363
2516
  *
2517
+ *
2364
2518
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2365
2519
  */
2366
2520
  iCheckColumnAdaptation(): object;
2367
2521
  /**
2368
2522
  * Checks whether the column adaptation dialog is open.
2369
2523
  *
2524
+ *
2370
2525
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2371
2526
  */
2372
2527
  iCheckColumnAdaptationDialog(): object;
2373
2528
  /**
2374
2529
  * Checks whether the filter button is available for the table.
2375
2530
  *
2531
+ *
2376
2532
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2377
2533
  */
2378
2534
  iCheckColumnFiltering(): object;
2379
2535
  /**
2380
2536
  * Checks the state of the columns of the table.
2381
2537
  *
2538
+ *
2382
2539
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2383
2540
  */
2384
2541
  iCheckColumns(
@@ -2402,12 +2559,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2402
2559
  /**
2403
2560
  * Checks whether the sort button is available for the table.
2404
2561
  *
2562
+ *
2405
2563
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2406
2564
  */
2407
2565
  iCheckColumnSorting(): object;
2408
2566
  /**
2409
2567
  * Checks the `Create` action of the table.
2410
2568
  *
2569
+ *
2411
2570
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2412
2571
  */
2413
2572
  iCheckCreate(
@@ -2419,6 +2578,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2419
2578
  /**
2420
2579
  * Checks the state of the CreationRow button in the table.
2421
2580
  *
2581
+ *
2422
2582
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2423
2583
  */
2424
2584
  iCheckCreationRow(
@@ -2440,6 +2600,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2440
2600
  /**
2441
2601
  * Checks the `Delete` action of the table.
2442
2602
  *
2603
+ *
2443
2604
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2444
2605
  */
2445
2606
  iCheckDelete(
@@ -2451,12 +2612,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2451
2612
  /**
2452
2613
  * Checks whether the export button is available for the table.
2453
2614
  *
2615
+ *
2454
2616
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2455
2617
  */
2456
2618
  iCheckExport(): object;
2457
2619
  /**
2458
2620
  * Checks, if a filter field is available in the filter dialog.
2459
2621
  *
2622
+ *
2460
2623
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2461
2624
  */
2462
2625
  iCheckFilterField(
@@ -2472,6 +2635,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2472
2635
  /**
2473
2636
  * Checks the `Fullscreen` action of the table.
2474
2637
  *
2638
+ *
2475
2639
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2476
2640
  */
2477
2641
  iCheckFullScreen(
@@ -2483,6 +2647,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2483
2647
  /**
2484
2648
  * Checks an action in the drop-down menu that is currently open.
2485
2649
  *
2650
+ *
2486
2651
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2487
2652
  */
2488
2653
  iCheckMenuAction(
@@ -2494,6 +2659,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2494
2659
  /**
2495
2660
  * Checks a messageStrip on a table.
2496
2661
  *
2662
+ *
2497
2663
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2498
2664
  */
2499
2665
  iCheckMessageStrip(
@@ -2505,12 +2671,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2505
2671
  /**
2506
2672
  * Checks whether the paste button is available for the table.
2507
2673
  *
2674
+ *
2508
2675
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2509
2676
  */
2510
2677
  iCheckPaste(): object;
2511
2678
  /**
2512
2679
  * Checks the quick filter action of the table.
2513
2680
  *
2681
+ *
2514
2682
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2515
2683
  */
2516
2684
  iCheckQuickFilter(
@@ -2522,6 +2690,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2522
2690
  /**
2523
2691
  * Checks the number of items in the quick-filter menu.
2524
2692
  *
2693
+ *
2525
2694
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2526
2695
  */
2527
2696
  iCheckQuickFilterItems(
@@ -2536,6 +2705,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2536
2705
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
2537
2706
  * row. If `mState` is provided, the row must be in the given state.
2538
2707
  *
2708
+ *
2539
2709
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2540
2710
  */
2541
2711
  iCheckRows(
@@ -2567,6 +2737,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2567
2737
  * Checks the search field in the table toolbar. If the `sSearchText` parameter is `undefined`, the search
2568
2738
  * text is not validated.
2569
2739
  *
2740
+ *
2570
2741
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
2571
2742
  */
2572
2743
  iCheckSearchField(
@@ -2582,6 +2753,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2582
2753
  /**
2583
2754
  * Checks a field in the sorting dialog.
2584
2755
  *
2756
+ *
2585
2757
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2586
2758
  */
2587
2759
  iCheckSortOrder(
@@ -2601,6 +2773,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2601
2773
  /**
2602
2774
  * Checks the state of the table.
2603
2775
  *
2776
+ *
2604
2777
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2605
2778
  */
2606
2779
  iCheckState(
@@ -2612,12 +2785,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2612
2785
  /**
2613
2786
  * Checks if the focus is on a table.
2614
2787
  *
2788
+ *
2615
2789
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2616
2790
  */
2617
2791
  iSeeFocusOnHeader(): object;
2618
2792
  /**
2619
2793
  * Checks if the focus is on a table row.
2620
2794
  *
2795
+ *
2621
2796
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2622
2797
  */
2623
2798
  iSeeFocusOnRow(
@@ -2677,6 +2852,7 @@ declare module "sap/fe/test/JourneyRunner" {
2677
2852
  *
2678
2853
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2679
2854
  *
2855
+ *
2680
2856
  * @returns Created class / constructor function
2681
2857
  */
2682
2858
  static extend<T extends Record<string, unknown>>(
@@ -2697,12 +2873,14 @@ declare module "sap/fe/test/JourneyRunner" {
2697
2873
  /**
2698
2874
  * Gets the global journey runner instance.
2699
2875
  *
2876
+ *
2700
2877
  * @returns The global default {@link sap.fe.test.JourneyRunner} instance
2701
2878
  */
2702
2879
  static getDefaultRunner(): object;
2703
2880
  /**
2704
2881
  * Returns a metadata object for class sap.fe.test.JourneyRunner.
2705
2882
  *
2883
+ *
2706
2884
  * @returns Metadata object describing this class
2707
2885
  */
2708
2886
  static getMetadata(): Metadata;
@@ -2723,8 +2901,6 @@ declare module "sap/fe/test/JourneyRunner" {
2723
2901
  oDefaultRunner: JourneyRunner
2724
2902
  ): void;
2725
2903
  /**
2726
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2727
- *
2728
2904
  * Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2729
2905
  * `actions` setting.
2730
2906
  *
@@ -2733,12 +2909,12 @@ declare module "sap/fe/test/JourneyRunner" {
2733
2909
  *
2734
2910
  * By default, an instance of {@link sap.fe.test.BaseActions} will be returned.
2735
2911
  *
2912
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2913
+ *
2736
2914
  * @returns An Opa instance for the base actions
2737
2915
  */
2738
2916
  getBaseActions(): Opa;
2739
2917
  /**
2740
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2741
- *
2742
2918
  * Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2743
2919
  * `arrangements` setting.
2744
2920
  *
@@ -2747,6 +2923,8 @@ declare module "sap/fe/test/JourneyRunner" {
2747
2923
  *
2748
2924
  * By default, an instance of {@link sap.fe.test.BaseArrangements} will be returned.
2749
2925
  *
2926
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2927
+ *
2750
2928
  * @returns An Opa instance for the base arrangements
2751
2929
  */
2752
2930
  getBaseArrangements(
@@ -2756,8 +2934,6 @@ declare module "sap/fe/test/JourneyRunner" {
2756
2934
  mSettings: object
2757
2935
  ): Opa;
2758
2936
  /**
2759
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2760
- *
2761
2937
  * Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2762
2938
  * `assertions` setting.
2763
2939
  *
@@ -2766,6 +2942,8 @@ declare module "sap/fe/test/JourneyRunner" {
2766
2942
  *
2767
2943
  * By default, an instance of {@link sap.fe.test.BaseAssertions} will be returned.
2768
2944
  *
2945
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2946
+ *
2769
2947
  * @returns An Opa instance for the base assertions
2770
2948
  */
2771
2949
  getBaseAssertions(): Opa;
@@ -2774,6 +2952,7 @@ declare module "sap/fe/test/JourneyRunner" {
2774
2952
  *
2775
2953
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
2776
2954
  *
2955
+ *
2777
2956
  * @returns A `Promise` that is resolved after all tests have been executed
2778
2957
  */
2779
2958
  run(
@@ -2816,6 +2995,7 @@ declare module "sap/fe/test/JourneyRunner" {
2816
2995
  *
2817
2996
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
2818
2997
  *
2998
+ *
2819
2999
  * @returns A `Promise` that is resolved after all tests have been executed
2820
3000
  */
2821
3001
  run(
@@ -2909,6 +3089,7 @@ declare module "sap/fe/test/ListReport" {
2909
3089
  /**
2910
3090
  * Collapses or expands the page header.
2911
3091
  *
3092
+ *
2912
3093
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2913
3094
  */
2914
3095
  iCollapseExpandPageHeader(
@@ -2920,6 +3101,7 @@ declare module "sap/fe/test/ListReport" {
2920
3101
  /**
2921
3102
  * Navigates to or focuses on the defined view of a Multiple Views List Report table.
2922
3103
  *
3104
+ *
2923
3105
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2924
3106
  */
2925
3107
  iGoToView(
@@ -2940,18 +3122,21 @@ declare module "sap/fe/test/ListReport" {
2940
3122
  /**
2941
3123
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
2942
3124
  *
3125
+ *
2943
3126
  * @returns The available filter bar actions
2944
3127
  */
2945
3128
  onFilterBar(): FilterBarActions;
2946
3129
  /**
2947
3130
  * Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
2948
3131
  *
3132
+ *
2949
3133
  * @returns The available header actions
2950
3134
  */
2951
3135
  onHeader(): HeaderActionsLR;
2952
3136
  /**
2953
3137
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
2954
3138
  *
3139
+ *
2955
3140
  * @returns The available table actions
2956
3141
  */
2957
3142
  onTable(
@@ -2970,6 +3155,7 @@ declare module "sap/fe/test/ListReport" {
2970
3155
  /**
2971
3156
  * Checks the view of a Multiple View List Report table.
2972
3157
  *
3158
+ *
2973
3159
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2974
3160
  */
2975
3161
  iCheckView(
@@ -3000,18 +3186,21 @@ declare module "sap/fe/test/ListReport" {
3000
3186
  /**
3001
3187
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
3002
3188
  *
3189
+ *
3003
3190
  * @returns The available filter bar assertions
3004
3191
  */
3005
3192
  onFilterBar(): FilterBarAssertions;
3006
3193
  /**
3007
3194
  * Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
3008
3195
  *
3196
+ *
3009
3197
  * @returns The available header assertions
3010
3198
  */
3011
3199
  onHeader(): HeaderAssertionsLR;
3012
3200
  /**
3013
3201
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
3014
3202
  *
3203
+ *
3015
3204
  * @returns The available table assertions
3016
3205
  */
3017
3206
  onTable(
@@ -3112,6 +3301,7 @@ declare module "sap/fe/test/ObjectPage" {
3112
3301
  /**
3113
3302
  * Collapses or expands the page header.
3114
3303
  *
3304
+ *
3115
3305
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3116
3306
  */
3117
3307
  iCollapseExpandPageHeader(
@@ -3123,6 +3313,7 @@ declare module "sap/fe/test/ObjectPage" {
3123
3313
  /**
3124
3314
  * Navigates to or focuses on the defined section.
3125
3315
  *
3316
+ *
3126
3317
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3127
3318
  */
3128
3319
  iGoToSection(
@@ -3149,6 +3340,7 @@ declare module "sap/fe/test/ObjectPage" {
3149
3340
  /**
3150
3341
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
3151
3342
  *
3343
+ *
3152
3344
  * @returns The available filter bar actions
3153
3345
  */
3154
3346
  onFilterBar(
@@ -3162,12 +3354,14 @@ declare module "sap/fe/test/ObjectPage" {
3162
3354
  /**
3163
3355
  * Returns a {@link sap.fe.test.api.FooterActionsOP} instance.
3164
3356
  *
3357
+ *
3165
3358
  * @returns The available footer actions
3166
3359
  */
3167
3360
  onFooter(): FooterActionsOP;
3168
3361
  /**
3169
3362
  * Returns a {@link sap.fe.test.api.FormActions} instance.
3170
3363
  *
3364
+ *
3171
3365
  * @returns The available form actions
3172
3366
  */
3173
3367
  onForm(
@@ -3179,12 +3373,14 @@ declare module "sap/fe/test/ObjectPage" {
3179
3373
  /**
3180
3374
  * Returns a {@link sap.fe.test.api.HeaderActions} instance.
3181
3375
  *
3376
+ *
3182
3377
  * @returns The available header actions
3183
3378
  */
3184
3379
  onHeader(): HeaderActions;
3185
3380
  /**
3186
3381
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
3187
3382
  *
3383
+ *
3188
3384
  * @returns The available table actions
3189
3385
  */
3190
3386
  onTable(
@@ -3203,6 +3399,7 @@ declare module "sap/fe/test/ObjectPage" {
3203
3399
  /**
3204
3400
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
3205
3401
  *
3402
+ *
3206
3403
  * @returns The available filter bar assertions
3207
3404
  */
3208
3405
  onFilterBar(
@@ -3216,12 +3413,14 @@ declare module "sap/fe/test/ObjectPage" {
3216
3413
  /**
3217
3414
  * Returns a {@link sap.fe.test.api.FooterAssertionsOP} instance.
3218
3415
  *
3416
+ *
3219
3417
  * @returns The available footer assertions
3220
3418
  */
3221
3419
  onFooter(): FooterAssertionsOP;
3222
3420
  /**
3223
3421
  * Returns a {@link sap.fe.test.api.FormAssertions} instance.
3224
3422
  *
3423
+ *
3225
3424
  * @returns The available form actions
3226
3425
  */
3227
3426
  onForm(
@@ -3233,12 +3432,14 @@ declare module "sap/fe/test/ObjectPage" {
3233
3432
  /**
3234
3433
  * Returns a {@link sap.fe.test.api.HeaderAssertions} instance.
3235
3434
  *
3435
+ *
3236
3436
  * @returns The available header assertions
3237
3437
  */
3238
3438
  onHeader(): HeaderAssertions;
3239
3439
  /**
3240
3440
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
3241
3441
  *
3442
+ *
3242
3443
  * @returns The available table assertions
3243
3444
  */
3244
3445
  onTable(
@@ -3272,6 +3473,7 @@ declare module "sap/fe/test/Shell" {
3272
3473
  * Check an intent-based navigation. The function checks the semantic object and the action within the URL
3273
3474
  * of an application. Optionally, further URL parameters can be checked.
3274
3475
  *
3476
+ *
3275
3477
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3276
3478
  */
3277
3479
  iCheckIntentBasedNavigation(
@@ -3298,18 +3500,21 @@ declare module "sap/fe/test/Shell" {
3298
3500
  /**
3299
3501
  * Navigates back via shell back button.
3300
3502
  *
3503
+ *
3301
3504
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3302
3505
  */
3303
3506
  iNavigateBack(): object;
3304
3507
  /**
3305
3508
  * Navigates to the launch pad via the home button.
3306
3509
  *
3510
+ *
3307
3511
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3308
3512
  */
3309
3513
  iNavigateHome(): object;
3310
3514
  /**
3311
3515
  * Navigates via a navigation item in the shell's navigation menu.
3312
3516
  *
3517
+ *
3313
3518
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3314
3519
  */
3315
3520
  iNavigateViaMenu(
@@ -3321,6 +3526,7 @@ declare module "sap/fe/test/Shell" {
3321
3526
  /**
3322
3527
  * Opens the navigation menu in the shell header.
3323
3528
  *
3529
+ *
3324
3530
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3325
3531
  */
3326
3532
  iOpenNavigationMenu(
@@ -3333,6 +3539,7 @@ declare module "sap/fe/test/Shell" {
3333
3539
  /**
3334
3540
  * Selecting a tile in the launchpad by its target app, for example `iPressTile("SalesOrder-manage")`.
3335
3541
  *
3542
+ *
3336
3543
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3337
3544
  */
3338
3545
  iPressTile(
@@ -3385,24 +3592,28 @@ declare module "sap/fe/test/TemplatePage" {
3385
3592
  /**
3386
3593
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
3387
3594
  *
3595
+ *
3388
3596
  * @returns The available dialog actions
3389
3597
  */
3390
3598
  onActionDialog(): DialogActions;
3391
3599
  /**
3392
3600
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
3393
3601
  *
3602
+ *
3394
3603
  * @returns The available dialog actions
3395
3604
  */
3396
3605
  onConfirmationDialog(): DialogActions;
3397
3606
  /**
3398
3607
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
3399
3608
  *
3609
+ *
3400
3610
  * @returns The available dialog actions
3401
3611
  */
3402
3612
  onCreateDialog(): DialogCreateActions;
3403
3613
  /**
3404
3614
  * Returns a {@link sap.fe.test.api.DialogActions} instance.
3405
3615
  *
3616
+ *
3406
3617
  * @returns The available dialog actions
3407
3618
  */
3408
3619
  onDialog(
@@ -3414,18 +3625,21 @@ declare module "sap/fe/test/TemplatePage" {
3414
3625
  /**
3415
3626
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
3416
3627
  *
3628
+ *
3417
3629
  * @returns The available dialog actions
3418
3630
  */
3419
3631
  onErrorDialog(): DialogActions;
3420
3632
  /**
3421
3633
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
3422
3634
  *
3635
+ *
3423
3636
  * @returns The available dialog actions
3424
3637
  */
3425
3638
  onMessageDialog(): DialogMessageActions;
3426
3639
  /**
3427
3640
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
3428
3641
  *
3642
+ *
3429
3643
  * @returns The available dialog actions
3430
3644
  */
3431
3645
  onValueHelpDialog(): DialogValueHelpActions;
@@ -3439,30 +3653,35 @@ declare module "sap/fe/test/TemplatePage" {
3439
3653
  /**
3440
3654
  * Confirms the visibility of the current page.
3441
3655
  *
3656
+ *
3442
3657
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3443
3658
  */
3444
3659
  iSeeThisPage(): object;
3445
3660
  /**
3446
3661
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
3447
3662
  *
3663
+ *
3448
3664
  * @returns The available dialog assertions
3449
3665
  */
3450
3666
  onActionDialog(): DialogAssertions;
3451
3667
  /**
3452
3668
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
3453
3669
  *
3670
+ *
3454
3671
  * @returns The available dialog assertions
3455
3672
  */
3456
3673
  onConfirmationDialog(): DialogAssertions;
3457
3674
  /**
3458
3675
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
3459
3676
  *
3677
+ *
3460
3678
  * @returns The available dialog assertions
3461
3679
  */
3462
3680
  onCreateDialog(): DialogCreateAssertions;
3463
3681
  /**
3464
3682
  * Returns a {@link sap.fe.test.api.DialogAssertions} instance.
3465
3683
  *
3684
+ *
3466
3685
  * @returns The available dialog actions
3467
3686
  */
3468
3687
  onDialog(
@@ -3474,18 +3693,21 @@ declare module "sap/fe/test/TemplatePage" {
3474
3693
  /**
3475
3694
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
3476
3695
  *
3696
+ *
3477
3697
  * @returns The available dialog assertions
3478
3698
  */
3479
3699
  onErrorDialog(): DialogAssertions;
3480
3700
  /**
3481
3701
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
3482
3702
  *
3703
+ *
3483
3704
  * @returns The available dialog assertions
3484
3705
  */
3485
3706
  onMessageDialog(): DialogMessageAssertions;
3486
3707
  /**
3487
3708
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
3488
3709
  *
3710
+ *
3489
3711
  * @returns The available dialog assertions
3490
3712
  */
3491
3713
  onValueHelpDialog(): DialogValueHelpAssertions;