@sapui5/ts-types 1.120.7 → 1.121.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.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +50 -18
  4. package/types/sap.ca.ui.d.ts +1114 -546
  5. package/types/sap.chart.d.ts +191 -43
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1960
  8. package/types/sap.f.d.ts +1607 -886
  9. package/types/sap.fe.core.d.ts +212 -191
  10. package/types/sap.fe.macros.d.ts +371 -531
  11. package/types/sap.fe.navigation.d.ts +59 -26
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +7 -0
  14. package/types/sap.fe.templates.d.ts +16 -11
  15. package/types/sap.fe.test.d.ts +333 -33
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +3947 -1754
  19. package/types/sap.insights.d.ts +162 -43
  20. package/types/sap.m.d.ts +14867 -8374
  21. package/types/sap.makit.d.ts +379 -187
  22. package/types/sap.me.d.ts +237 -37
  23. package/types/sap.ndc.d.ts +40 -9
  24. package/types/sap.ovp.d.ts +9 -7
  25. package/types/sap.rules.ui.d.ts +134 -75
  26. package/types/sap.sac.df.d.ts +272 -49
  27. package/types/sap.suite.ui.commons.d.ts +4231 -1008
  28. package/types/sap.suite.ui.generic.template.d.ts +236 -171
  29. package/types/sap.suite.ui.microchart.d.ts +1027 -388
  30. package/types/sap.tnt.d.ts +827 -247
  31. package/types/sap.ui.codeeditor.d.ts +57 -24
  32. package/types/sap.ui.commons.d.ts +2075 -673
  33. package/types/sap.ui.comp.d.ts +3908 -2995
  34. package/types/sap.ui.core.d.ts +5739 -3520
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +88 -67
  37. package/types/sap.ui.fl.d.ts +169 -104
  38. package/types/sap.ui.generic.app.d.ts +250 -193
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +494 -388
  41. package/types/sap.ui.layout.d.ts +1345 -668
  42. package/types/sap.ui.mdc.d.ts +3395 -2036
  43. package/types/sap.ui.richtexteditor.d.ts +115 -55
  44. package/types/sap.ui.rta.d.ts +7 -7
  45. package/types/sap.ui.suite.d.ts +46 -12
  46. package/types/sap.ui.support.d.ts +58 -26
  47. package/types/sap.ui.table.d.ts +963 -627
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +1979 -1249
  50. package/types/sap.ui.ux3.d.ts +1311 -491
  51. package/types/sap.ui.vbm.d.ts +5300 -2517
  52. package/types/sap.ui.vk.d.ts +2742 -836
  53. package/types/sap.ui.vtm.d.ts +685 -215
  54. package/types/sap.ui.webc.common.d.ts +11 -9
  55. package/types/sap.ui.webc.fiori.d.ts +884 -213
  56. package/types/sap.ui.webc.main.d.ts +2815 -601
  57. package/types/sap.uiext.inbox.d.ts +207 -36
  58. package/types/sap.ushell.d.ts +1954 -1270
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +626 -321
  61. package/types/sap.viz.d.ts +4324 -2527
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +79 -18
  64. package/types/sap.zen.crosstab.d.ts +83 -15
  65. package/types/sap.zen.dsh.d.ts +194 -143
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.4
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -8,17 +8,22 @@ declare namespace sap {
8
8
  namespace test {
9
9
  namespace api {
10
10
  class DialogActions {
11
- constructor();
11
+ /**
12
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13
+ */
14
+ protected constructor();
12
15
 
13
16
  /**
14
17
  * Cancels the dialog by clicking the corresponding button (for example, 'Cancel').
15
18
  *
19
+ *
16
20
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
17
21
  */
18
22
  iCancel(): object;
19
23
  /**
20
24
  * Changes the content of a field in a dialog.
21
25
  *
26
+ *
22
27
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
23
28
  */
24
29
  iChangeDialogField(
@@ -38,23 +43,29 @@ declare namespace sap {
38
43
  /**
39
44
  * Closes the dialog by pressing the 'Escape' key.
40
45
  *
46
+ *
41
47
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
42
48
  */
43
49
  iClose(): object;
44
50
  /**
45
51
  * Confirms the dialog by clicking the corresponding button (for example, 'OK').
46
52
  *
53
+ *
47
54
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
48
55
  */
49
56
  iConfirm(): object;
50
57
  }
51
58
 
52
59
  class DialogAssertions {
53
- constructor();
60
+ /**
61
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
62
+ */
63
+ protected constructor();
54
64
 
55
65
  /**
56
66
  * Checks the content and state of a field in an action parameter dialog.
57
67
  *
68
+ *
58
69
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
59
70
  */
60
71
  iCheckActionParameterDialogField(
@@ -80,6 +91,7 @@ declare namespace sap {
80
91
  /**
81
92
  * Checks the cancellation button of the dialog.
82
93
  *
94
+ *
83
95
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
84
96
  */
85
97
  iCheckCancel(
@@ -91,6 +103,7 @@ declare namespace sap {
91
103
  /**
92
104
  * Checks the confirmation button of the dialog.
93
105
  *
106
+ *
94
107
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
95
108
  */
96
109
  iCheckConfirm(
@@ -102,6 +115,7 @@ declare namespace sap {
102
115
  /**
103
116
  * Checks the content and state of a field in a dialog.
104
117
  *
118
+ *
105
119
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
106
120
  */
107
121
  iCheckDialogField(
@@ -127,6 +141,7 @@ declare namespace sap {
127
141
  /**
128
142
  * Checks the dialog.
129
143
  *
144
+ *
130
145
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
131
146
  */
132
147
  iCheckState(
@@ -138,22 +153,30 @@ declare namespace sap {
138
153
  }
139
154
 
140
155
  class DialogCreateActions extends sap.fe.test.api.DialogActions {
141
- constructor();
156
+ /**
157
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
158
+ */
159
+ protected constructor();
142
160
 
143
161
  /**
144
162
  * Executes the `Create` action on the create dialog.
145
163
  *
164
+ *
146
165
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
147
166
  */
148
167
  iExecuteCreate(): object;
149
168
  }
150
169
 
151
170
  class DialogCreateAssertions extends sap.fe.test.api.DialogAssertions {
152
- constructor();
171
+ /**
172
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
173
+ */
174
+ protected constructor();
153
175
 
154
176
  /**
155
177
  * Checks the `Create` action on the dialog.
156
178
  *
179
+ *
157
180
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
158
181
  */
159
182
  iCheckCreate(
@@ -165,34 +188,44 @@ declare namespace sap {
165
188
  }
166
189
 
167
190
  class DialogMessageActions extends sap.fe.test.api.DialogActions {
168
- constructor();
191
+ /**
192
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
193
+ */
194
+ protected constructor();
169
195
 
170
196
  /**
171
197
  * Executes the `Back` action on the message dialog.
172
198
  *
199
+ *
173
200
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
174
201
  */
175
202
  iExecuteBack(): object;
176
203
  /**
177
204
  * Executes the `Refresh` action on the message dialog.
178
205
  *
206
+ *
179
207
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
180
208
  */
181
209
  iExecuteRefresh(): object;
182
210
  /**
183
211
  * Selects the specified entry in the draft data loss popup.
184
212
  *
213
+ *
185
214
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
186
215
  */
187
216
  iSelectDraftDataLossOption(optionKey: any): object;
188
217
  }
189
218
 
190
219
  class DialogMessageAssertions extends sap.fe.test.api.DialogAssertions {
191
- constructor();
220
+ /**
221
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
222
+ */
223
+ protected constructor();
192
224
 
193
225
  /**
194
226
  * Checks the `Back` action on the message dialog.
195
227
  *
228
+ *
196
229
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
197
230
  */
198
231
  iCheckBack(
@@ -204,6 +237,7 @@ declare namespace sap {
204
237
  /**
205
238
  * Checks whether a certain message is shown in the dialog.
206
239
  *
240
+ *
207
241
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
208
242
  */
209
243
  iCheckMessage(
@@ -215,6 +249,7 @@ declare namespace sap {
215
249
  /**
216
250
  * Checks the `Refresh` action on the dialog.
217
251
  *
252
+ *
218
253
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
219
254
  */
220
255
  iCheckRefresh(
@@ -226,11 +261,15 @@ declare namespace sap {
226
261
  }
227
262
 
228
263
  class DialogValueHelpActions extends sap.fe.test.api.DialogActions {
229
- constructor();
264
+ /**
265
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
266
+ */
267
+ protected constructor();
230
268
 
231
269
  /**
232
270
  * Adds a new condition.
233
271
  *
272
+ *
234
273
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
235
274
  */
236
275
  iAddCondition(
@@ -247,6 +286,7 @@ declare namespace sap {
247
286
  /**
248
287
  * Changes an existing condition.
249
288
  *
289
+ *
250
290
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
251
291
  */
252
292
  iChangeCondition(
@@ -267,6 +307,7 @@ declare namespace sap {
267
307
  /**
268
308
  * Changes the value of a filter field.
269
309
  *
310
+ *
270
311
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
271
312
  */
272
313
  iChangeFilterField(
@@ -286,6 +327,7 @@ declare namespace sap {
286
327
  /**
287
328
  * Changes the value of the search field.
288
329
  *
330
+ *
289
331
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
290
332
  */
291
333
  iChangeSearchField(
@@ -297,30 +339,35 @@ declare namespace sap {
297
339
  /**
298
340
  * Starts the search.
299
341
  *
342
+ *
300
343
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
301
344
  */
302
345
  iExecuteSearch(): object;
303
346
  /**
304
347
  * Clicks the `Hide/Show Filters` button.
305
348
  *
349
+ *
306
350
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
307
351
  */
308
352
  iExecuteShowHideFilters(): object;
309
353
  /**
310
354
  * Navigates to the `Define Conditions` tab.
311
355
  *
356
+ *
312
357
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
313
358
  */
314
359
  iGoToDefineConditions(): object;
315
360
  /**
316
361
  * Navigates to the `Search and Select` tab.
317
362
  *
363
+ *
318
364
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
319
365
  */
320
366
  iGoToSearchAndSelect(): object;
321
367
  /**
322
368
  * Removes an existing condition.
323
369
  *
370
+ *
324
371
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
325
372
  */
326
373
  iRemoveCondition(
@@ -332,12 +379,14 @@ declare namespace sap {
332
379
  /**
333
380
  * Resets the search field value.
334
381
  *
382
+ *
335
383
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
336
384
  */
337
385
  iResetSearchField(): object;
338
386
  /**
339
387
  * Selects the specified rows.
340
388
  *
389
+ *
341
390
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
342
391
  */
343
392
  iSelectRows(
@@ -361,12 +410,16 @@ declare namespace sap {
361
410
 
362
411
  class DialogValueHelpAssertions extends sap.fe.test.api
363
412
  .DialogAssertions {
364
- constructor();
413
+ /**
414
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
415
+ */
416
+ protected constructor();
365
417
 
366
418
  /**
367
419
  * Checks the `Define conditions` tab in a value help dialog. Please be aware that the tab control of the
368
420
  * toolbar is checked.
369
421
  *
422
+ *
370
423
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
371
424
  */
372
425
  iCheckDefineConditions(
@@ -378,6 +431,7 @@ declare namespace sap {
378
431
  /**
379
432
  * Checks the filter bar.
380
433
  *
434
+ *
381
435
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
382
436
  */
383
437
  iCheckFilterBar(
@@ -389,6 +443,7 @@ declare namespace sap {
389
443
  /**
390
444
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
391
445
  *
446
+ *
392
447
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
393
448
  */
394
449
  iCheckFilterField(
@@ -415,6 +470,7 @@ declare namespace sap {
415
470
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
416
471
  * row. If `mState` is provided, the row must be in the given state.
417
472
  *
473
+ *
418
474
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
419
475
  */
420
476
  iCheckRows(
@@ -441,6 +497,7 @@ declare namespace sap {
441
497
  * Checks the `Search and Select` tab in a value help dialog. Please be aware that the tab control of the
442
498
  * toolbar is checked.
443
499
  *
500
+ *
444
501
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
445
502
  */
446
503
  iCheckSearchAndSelect(
@@ -453,6 +510,7 @@ declare namespace sap {
453
510
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
454
511
  * text is not validated.
455
512
  *
513
+ *
456
514
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
457
515
  */
458
516
  iCheckSearchField(
@@ -468,6 +526,7 @@ declare namespace sap {
468
526
  /**
469
527
  * Checks the dialog.
470
528
  *
529
+ *
471
530
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
472
531
  */
473
532
  iCheckState(
@@ -479,6 +538,7 @@ declare namespace sap {
479
538
  /**
480
539
  * Checks the table.
481
540
  *
541
+ *
482
542
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
483
543
  */
484
544
  iCheckTable(
@@ -490,11 +550,15 @@ declare namespace sap {
490
550
  }
491
551
 
492
552
  class FilterBarActions extends sap.fe.test.api.FilterBarAPI {
493
- constructor();
553
+ /**
554
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
555
+ */
556
+ protected constructor();
494
557
 
495
558
  /**
496
559
  * Adds a field as a filter field.
497
560
  *
561
+ *
498
562
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
499
563
  */
500
564
  iAddAdaptationFilterField(
@@ -506,6 +570,7 @@ declare namespace sap {
506
570
  /**
507
571
  * Changes the editing status filter field.
508
572
  *
573
+ *
509
574
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
510
575
  */
511
576
  iChangeEditingStatus(
@@ -517,6 +582,7 @@ declare namespace sap {
517
582
  /**
518
583
  * Changes the value of the defined filter field.
519
584
  *
585
+ *
520
586
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
521
587
  */
522
588
  iChangeFilterField(
@@ -536,6 +602,7 @@ declare namespace sap {
536
602
  /**
537
603
  * Changes the search field.
538
604
  *
605
+ *
539
606
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
540
607
  */
541
608
  iChangeSearchField(
@@ -547,6 +614,7 @@ declare namespace sap {
547
614
  /**
548
615
  * Executes a keyboard shortcut.
549
616
  *
617
+ *
550
618
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
551
619
  */
552
620
  iExecuteKeyboardShortcut(
@@ -562,12 +630,14 @@ declare namespace sap {
562
630
  /**
563
631
  * Executes the search with the current filters.
564
632
  *
633
+ *
565
634
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
566
635
  */
567
636
  iExecuteSearch(): object;
568
637
  /**
569
638
  * Opens the value help of the given field.
570
639
  *
640
+ *
571
641
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
572
642
  */
573
643
  iOpenValueHelp(
@@ -579,6 +649,7 @@ declare namespace sap {
579
649
  /**
580
650
  * Removes a field as a filter field.
581
651
  *
652
+ *
582
653
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
583
654
  */
584
655
  iRemoveAdaptationFilterField(
@@ -590,12 +661,14 @@ declare namespace sap {
590
661
  /**
591
662
  * Resets the search field.
592
663
  *
664
+ *
593
665
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
594
666
  */
595
667
  iResetSearchField(): object;
596
668
  /**
597
669
  * Saves a variant under the given name, or overwrites the current variant.
598
670
  *
671
+ *
599
672
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
600
673
  */
601
674
  iSaveVariant(
@@ -615,6 +688,7 @@ declare namespace sap {
615
688
  /**
616
689
  * Selects the chosen variant.
617
690
  *
691
+ *
618
692
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
619
693
  */
620
694
  iSelectVariant(
@@ -626,28 +700,37 @@ declare namespace sap {
626
700
  }
627
701
 
628
702
  class FilterBarAPI {
629
- constructor();
703
+ /**
704
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
705
+ */
706
+ protected constructor();
630
707
 
631
708
  /**
632
709
  * Confirms the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
633
710
  *
711
+ *
634
712
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
635
713
  */
636
714
  iConfirmFilterAdaptation(): object;
637
715
  /**
638
716
  * Opens the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
639
717
  *
718
+ *
640
719
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
641
720
  */
642
721
  iOpenFilterAdaptation(): object;
643
722
  }
644
723
 
645
724
  class FilterBarAssertions extends sap.fe.test.api.FilterBarAPI {
646
- constructor();
725
+ /**
726
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
727
+ */
728
+ protected constructor();
647
729
 
648
730
  /**
649
731
  * Checks a field in the adaptation dialog.
650
732
  *
733
+ *
651
734
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
652
735
  */
653
736
  iCheckAdaptationFilterField(
@@ -663,6 +746,7 @@ declare namespace sap {
663
746
  /**
664
747
  * Check the filter field for the editing status.
665
748
  *
749
+ *
666
750
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
667
751
  */
668
752
  iCheckEditingStatus(
@@ -678,12 +762,14 @@ declare namespace sap {
678
762
  /**
679
763
  * Checks whether the filter adaptation dialog is open.
680
764
  *
765
+ *
681
766
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
682
767
  */
683
768
  iCheckFilterAdaptation(): object;
684
769
  /**
685
770
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
686
771
  *
772
+ *
687
773
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
688
774
  */
689
775
  iCheckFilterField(
@@ -707,6 +793,7 @@ declare namespace sap {
707
793
  /**
708
794
  * Checks the search button.
709
795
  *
796
+ *
710
797
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
711
798
  */
712
799
  iCheckSearch(
@@ -719,6 +806,7 @@ declare namespace sap {
719
806
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
720
807
  * text is not validated.
721
808
  *
809
+ *
722
810
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
723
811
  */
724
812
  iCheckSearchField(
@@ -734,6 +822,7 @@ declare namespace sap {
734
822
  /**
735
823
  * Checks the filter bar.
736
824
  *
825
+ *
737
826
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
738
827
  */
739
828
  iCheckState(
@@ -745,6 +834,7 @@ declare namespace sap {
745
834
  /**
746
835
  * Checks if the focus is on the filter field.
747
836
  *
837
+ *
748
838
  * @returns The result of the {@link sa p.ui.test.Opa5#waitFor} function, to be used for chained statements
749
839
  */
750
840
  iSeeFocusOnFilterField(
@@ -756,17 +846,22 @@ declare namespace sap {
756
846
  /**
757
847
  * Checks if the focus is on the Go Button of the filter bar.
758
848
  *
849
+ *
759
850
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
760
851
  */
761
852
  iSeeFocusOnGoButton(): object;
762
853
  }
763
854
 
764
855
  class FooterActionsBase {
765
- constructor();
856
+ /**
857
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
858
+ */
859
+ protected constructor();
766
860
 
767
861
  /**
768
862
  * Executes a footer action.
769
863
  *
864
+ *
770
865
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
771
866
  */
772
867
  iExecuteAction(
@@ -778,40 +873,51 @@ declare namespace sap {
778
873
  }
779
874
 
780
875
  class FooterActionsOP extends sap.fe.test.api.FooterActionsBase {
781
- constructor();
876
+ /**
877
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
878
+ */
879
+ protected constructor();
782
880
 
783
881
  /**
784
882
  * Confirms the Cancel action when user clicks `Cancel` in draft mode.
785
883
  *
884
+ *
786
885
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
787
886
  */
788
887
  iConfirmCancel(): object;
789
888
  /**
790
889
  * Executes the Apply action in the footer bar of a sub-object page.
791
890
  *
891
+ *
792
892
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
793
893
  */
794
894
  iExecuteApply(): object;
795
895
  /**
796
896
  * Executes the Cancel action in the footer bar of the object page.
797
897
  *
898
+ *
798
899
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
799
900
  */
800
901
  iExecuteCancel(): object;
801
902
  /**
802
903
  * Executes the Save or Create action in the footer bar of the object page.
803
904
  *
905
+ *
804
906
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
805
907
  */
806
908
  iExecuteSave(): object;
807
909
  }
808
910
 
809
911
  class FooterAssertionsBase {
810
- constructor();
912
+ /**
913
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
914
+ */
915
+ protected constructor();
811
916
 
812
917
  /**
813
918
  * Checks the state of an action in the footer bar.
814
919
  *
920
+ *
815
921
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
816
922
  */
817
923
  iCheckAction(
@@ -827,6 +933,7 @@ declare namespace sap {
827
933
  /**
828
934
  * Checks the state of the footer bar.
829
935
  *
936
+ *
830
937
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
831
938
  */
832
939
  iCheckState(
@@ -838,11 +945,15 @@ declare namespace sap {
838
945
  }
839
946
 
840
947
  class FooterAssertionsOP extends sap.fe.test.api.FooterAssertionsBase {
841
- constructor();
948
+ /**
949
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
950
+ */
951
+ protected constructor();
842
952
 
843
953
  /**
844
954
  * Checks the state of the Apply action in the footer bar.
845
955
  *
956
+ *
846
957
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
847
958
  */
848
959
  iCheckApply(
@@ -854,6 +965,7 @@ declare namespace sap {
854
965
  /**
855
966
  * Checks the state of the Cancel action in the footer bar.
856
967
  *
968
+ *
857
969
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
858
970
  */
859
971
  iCheckCancel(
@@ -865,18 +977,21 @@ declare namespace sap {
865
977
  /**
866
978
  * Checks for draft state 'Clear' in the footer bar.
867
979
  *
980
+ *
868
981
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
869
982
  */
870
983
  iCheckDraftStateClear(): object;
871
984
  /**
872
985
  * Checks for draft state 'Saved' in the footer bar.
873
986
  *
987
+ *
874
988
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
875
989
  */
876
990
  iCheckDraftStateSaved(): object;
877
991
  /**
878
992
  * Checks the state of the Save or Create action in the footer bar.
879
993
  *
994
+ *
880
995
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
881
996
  */
882
997
  iCheckSave(
@@ -888,11 +1003,15 @@ declare namespace sap {
888
1003
  }
889
1004
 
890
1005
  class FormActions extends sap.fe.test.api.FormAPI {
891
- constructor();
1006
+ /**
1007
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1008
+ */
1009
+ protected constructor();
892
1010
 
893
1011
  /**
894
1012
  * Changes the value of a field within a form.
895
1013
  *
1014
+ *
896
1015
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
897
1016
  */
898
1017
  iChangeField(
@@ -908,6 +1027,7 @@ declare namespace sap {
908
1027
  /**
909
1028
  * Toggles the value of a checkbox within a form.
910
1029
  *
1030
+ *
911
1031
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
912
1032
  */
913
1033
  iClickCheckBox(
@@ -919,6 +1039,7 @@ declare namespace sap {
919
1039
  /**
920
1040
  * Clicks a link within a form.
921
1041
  *
1042
+ *
922
1043
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
923
1044
  */
924
1045
  iClickLink(
@@ -930,6 +1051,7 @@ declare namespace sap {
930
1051
  /**
931
1052
  * Executes an action assigned to a form in a subsection.
932
1053
  *
1054
+ *
933
1055
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
934
1056
  */
935
1057
  iExecuteAction(
@@ -941,18 +1063,21 @@ declare namespace sap {
941
1063
  /**
942
1064
  * Executes the Show Less action of a form in a subsection.
943
1065
  *
1066
+ *
944
1067
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
945
1068
  */
946
1069
  iExecuteShowLess(): object;
947
1070
  /**
948
1071
  * Executes the Show More action of a form in a subsection.
949
1072
  *
1073
+ *
950
1074
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
951
1075
  */
952
1076
  iExecuteShowMore(): object;
953
1077
  /**
954
1078
  * Opens the value help of the given field.
955
1079
  *
1080
+ *
956
1081
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
957
1082
  */
958
1083
  iOpenValueHelp(
@@ -964,15 +1089,22 @@ declare namespace sap {
964
1089
  }
965
1090
 
966
1091
  class FormAPI {
967
- constructor();
1092
+ /**
1093
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1094
+ */
1095
+ protected constructor();
968
1096
  }
969
1097
 
970
1098
  class FormAssertions extends sap.fe.test.api.FormAPI {
971
- constructor();
1099
+ /**
1100
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1101
+ */
1102
+ protected constructor();
972
1103
 
973
1104
  /**
974
1105
  * Checks the state of an action in a subsection.
975
1106
  *
1107
+ *
976
1108
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
977
1109
  */
978
1110
  iCheckAction(
@@ -988,6 +1120,7 @@ declare namespace sap {
988
1120
  /**
989
1121
  * Checks the content and state of a field within a form.
990
1122
  *
1123
+ *
991
1124
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
992
1125
  */
993
1126
  iCheckField(
@@ -1014,6 +1147,7 @@ declare namespace sap {
1014
1147
  /**
1015
1148
  * Checks the field is a link with the given text and state.
1016
1149
  *
1150
+ *
1017
1151
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1018
1152
  */
1019
1153
  iCheckLink(
@@ -1033,6 +1167,7 @@ declare namespace sap {
1033
1167
  /**
1034
1168
  * Checks the Show Less action of a form in a subsection.
1035
1169
  *
1170
+ *
1036
1171
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1037
1172
  */
1038
1173
  iCheckShowLess(
@@ -1044,6 +1179,7 @@ declare namespace sap {
1044
1179
  /**
1045
1180
  * Checks the Show More action of a form in a subsection.
1046
1181
  *
1182
+ *
1047
1183
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1048
1184
  */
1049
1185
  iCheckShowMore(
@@ -1055,6 +1191,7 @@ declare namespace sap {
1055
1191
  /**
1056
1192
  * Checks the state of the form.
1057
1193
  *
1194
+ *
1058
1195
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1059
1196
  */
1060
1197
  iCheckState(
@@ -1066,11 +1203,15 @@ declare namespace sap {
1066
1203
  }
1067
1204
 
1068
1205
  class HeaderActions {
1069
- constructor();
1206
+ /**
1207
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1208
+ */
1209
+ protected constructor();
1070
1210
 
1071
1211
  /**
1072
1212
  * Executes an action in the header toolbar of an object page.
1073
1213
  *
1214
+ *
1074
1215
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1075
1216
  */
1076
1217
  iExecuteAction(
@@ -1082,24 +1223,28 @@ declare namespace sap {
1082
1223
  /**
1083
1224
  * Executes the Delete action in the header toolbar of an object page.
1084
1225
  *
1226
+ *
1085
1227
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1086
1228
  */
1087
1229
  iExecuteDelete(): object;
1088
1230
  /**
1089
1231
  * Executes the Draft/Saved Version action in the header toolbar of an object page.
1090
1232
  *
1233
+ *
1091
1234
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1092
1235
  */
1093
1236
  iExecuteDraftAndSavedVersionSwitch(): object;
1094
1237
  /**
1095
1238
  * Executes the Edit action in the header toolbar of an object page.
1096
1239
  *
1240
+ *
1097
1241
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1098
1242
  */
1099
1243
  iExecuteEdit(): object;
1100
1244
  /**
1101
1245
  * Executes an action in the drop-down menu that is currently open.
1102
1246
  *
1247
+ *
1103
1248
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1104
1249
  */
1105
1250
  iExecuteMenuAction(
@@ -1111,24 +1256,28 @@ declare namespace sap {
1111
1256
  /**
1112
1257
  * Navigates to the next sub-object page.
1113
1258
  *
1259
+ *
1114
1260
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1115
1261
  */
1116
1262
  iExecutePaginatorDown(): object;
1117
1263
  /**
1118
1264
  * Navigates to the previous sub-object page.
1119
1265
  *
1266
+ *
1120
1267
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1121
1268
  */
1122
1269
  iExecutePaginatorUp(): object;
1123
1270
  /**
1124
1271
  * Executes the Related Apps action in the header toolbar of an object page.
1125
1272
  *
1273
+ *
1126
1274
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1127
1275
  */
1128
1276
  iExecuteRelatedApps(): object;
1129
1277
  /**
1130
1278
  * Executes an action in the selection list that is currently open.
1131
1279
  *
1280
+ *
1132
1281
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1133
1282
  */
1134
1283
  iExecuteSelectListAction(
@@ -1140,11 +1289,15 @@ declare namespace sap {
1140
1289
  }
1141
1290
 
1142
1291
  class HeaderActionsLR {
1143
- constructor();
1292
+ /**
1293
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1294
+ */
1295
+ protected constructor();
1144
1296
 
1145
1297
  /**
1146
1298
  * Executes an action in the header toolbar of a list report.
1147
1299
  *
1300
+ *
1148
1301
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1149
1302
  */
1150
1303
  iExecuteAction(
@@ -1156,11 +1309,15 @@ declare namespace sap {
1156
1309
  }
1157
1310
 
1158
1311
  class HeaderAssertions {
1159
- constructor();
1312
+ /**
1313
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1314
+ */
1315
+ protected constructor();
1160
1316
 
1161
1317
  /**
1162
1318
  * Checks an action in the header toolbar.
1163
1319
  *
1320
+ *
1164
1321
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1165
1322
  */
1166
1323
  iCheckAction(
@@ -1176,6 +1333,7 @@ declare namespace sap {
1176
1333
  /**
1177
1334
  * Checks the `Delete` action in the header toolbar.
1178
1335
  *
1336
+ *
1179
1337
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1180
1338
  */
1181
1339
  iCheckDelete(
@@ -1187,6 +1345,7 @@ declare namespace sap {
1187
1345
  /**
1188
1346
  * Checks the `Edit` action in the header toolbar.
1189
1347
  *
1348
+ *
1190
1349
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1191
1350
  */
1192
1351
  iCheckEdit(
@@ -1198,6 +1357,7 @@ declare namespace sap {
1198
1357
  /**
1199
1358
  * Checks a field within a field group in the object page header.
1200
1359
  *
1360
+ *
1201
1361
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1202
1362
  */
1203
1363
  iCheckFieldInFieldGroup(
@@ -1225,6 +1385,7 @@ declare namespace sap {
1225
1385
  /**
1226
1386
  * Checks the custom facet in the object page header.
1227
1387
  *
1388
+ *
1228
1389
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1229
1390
  */
1230
1391
  iCheckHeaderFacet(
@@ -1240,6 +1401,7 @@ declare namespace sap {
1240
1401
  /**
1241
1402
  * Checks an action in the popover that is currently open.
1242
1403
  *
1404
+ *
1243
1405
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1244
1406
  */
1245
1407
  iCheckMenuAction(
@@ -1251,6 +1413,7 @@ declare namespace sap {
1251
1413
  /**
1252
1414
  * Checks the paginator down button.
1253
1415
  *
1416
+ *
1254
1417
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1255
1418
  */
1256
1419
  iCheckPaginatorDown(
@@ -1262,6 +1425,7 @@ declare namespace sap {
1262
1425
  /**
1263
1426
  * Checks the paginator up button.
1264
1427
  *
1428
+ *
1265
1429
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1266
1430
  */
1267
1431
  iCheckPaginatorUp(
@@ -1273,6 +1437,7 @@ declare namespace sap {
1273
1437
  /**
1274
1438
  * Checks the `Related Apps` action in the header toolbar.
1275
1439
  *
1440
+ *
1276
1441
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1277
1442
  */
1278
1443
  iCheckRelatedApps(
@@ -1284,6 +1449,7 @@ declare namespace sap {
1284
1449
  /**
1285
1450
  * Checks the `Save as Tile` action.
1286
1451
  *
1452
+ *
1287
1453
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1288
1454
  */
1289
1455
  iCheckSaveAsTile(
@@ -1295,6 +1461,7 @@ declare namespace sap {
1295
1461
  /**
1296
1462
  * Checks `Send Email` action.
1297
1463
  *
1464
+ *
1298
1465
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1299
1466
  */
1300
1467
  iCheckSendEmail(
@@ -1308,6 +1475,7 @@ declare namespace sap {
1308
1475
  *
1309
1476
  * If either title or description is `undefined`, it will not be checked.
1310
1477
  *
1478
+ *
1311
1479
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1312
1480
  */
1313
1481
  iCheckTitle(
@@ -1323,11 +1491,15 @@ declare namespace sap {
1323
1491
  }
1324
1492
 
1325
1493
  class HeaderAssertionsLR {
1326
- constructor();
1494
+ /**
1495
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1496
+ */
1497
+ protected constructor();
1327
1498
 
1328
1499
  /**
1329
1500
  * Checks an action of the header toolbar.
1330
1501
  *
1502
+ *
1331
1503
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1332
1504
  */
1333
1505
  iCheckAction(
@@ -1343,6 +1515,7 @@ declare namespace sap {
1343
1515
  /**
1344
1516
  * Checks the `Save as Tile` action.
1345
1517
  *
1518
+ *
1346
1519
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1347
1520
  */
1348
1521
  iCheckSaveAsTile(
@@ -1354,6 +1527,7 @@ declare namespace sap {
1354
1527
  /**
1355
1528
  * Checks the `Send Email` action.
1356
1529
  *
1530
+ *
1357
1531
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1358
1532
  */
1359
1533
  iCheckSendEmail(
@@ -1365,11 +1539,15 @@ declare namespace sap {
1365
1539
  }
1366
1540
 
1367
1541
  class TableActions extends sap.fe.test.api.TableAPI {
1368
- constructor();
1542
+ /**
1543
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1544
+ */
1545
+ protected constructor();
1369
1546
 
1370
1547
  /**
1371
1548
  * Adds a field as a column to the table.
1372
1549
  *
1550
+ *
1373
1551
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1374
1552
  */
1375
1553
  iAddAdaptationColumn(
@@ -1381,6 +1559,7 @@ declare namespace sap {
1381
1559
  /**
1382
1560
  * Aggregates the table entries by the specified column.
1383
1561
  *
1562
+ *
1384
1563
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1385
1564
  */
1386
1565
  iAggregateByColumn(
@@ -1400,6 +1579,7 @@ declare namespace sap {
1400
1579
  /**
1401
1580
  * Adds a filter condition to the filter field.
1402
1581
  *
1582
+ *
1403
1583
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1404
1584
  */
1405
1585
  iChangeFilterField(
@@ -1422,6 +1602,7 @@ declare namespace sap {
1422
1602
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1423
1603
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1424
1604
  *
1605
+ *
1425
1606
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1426
1607
  */
1427
1608
  iChangeRow(
@@ -1452,6 +1633,7 @@ declare namespace sap {
1452
1633
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1453
1634
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1454
1635
  *
1636
+ *
1455
1637
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1456
1638
  */
1457
1639
  iChangeRow(
@@ -1468,6 +1650,7 @@ declare namespace sap {
1468
1650
  /**
1469
1651
  * Changes the search field.
1470
1652
  *
1653
+ *
1471
1654
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1472
1655
  */
1473
1656
  iChangeSearchField(
@@ -1479,6 +1662,7 @@ declare namespace sap {
1479
1662
  /**
1480
1663
  * Adds a field to the sorting of the table via the sort dialog.
1481
1664
  *
1665
+ *
1482
1666
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1483
1667
  */
1484
1668
  iChangeSortOrder(
@@ -1494,6 +1678,7 @@ declare namespace sap {
1494
1678
  /**
1495
1679
  * Collapses a row corresponding to a visual group.
1496
1680
  *
1681
+ *
1497
1682
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1498
1683
  */
1499
1684
  iCollapseGroupRow(
@@ -1509,6 +1694,7 @@ declare namespace sap {
1509
1694
  /**
1510
1695
  * Executes an action on the table.
1511
1696
  *
1697
+ *
1512
1698
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1513
1699
  */
1514
1700
  iExecuteAction(
@@ -1520,24 +1706,28 @@ declare namespace sap {
1520
1706
  /**
1521
1707
  * Executes the `Create` action on the table.
1522
1708
  *
1709
+ *
1523
1710
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1524
1711
  */
1525
1712
  iExecuteCreate(): object;
1526
1713
  /**
1527
1714
  * Executes the `Delete` action on the table.
1528
1715
  *
1716
+ *
1529
1717
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1530
1718
  */
1531
1719
  iExecuteDelete(): object;
1532
1720
  /**
1533
1721
  * Executes the `Fullscreen` action on the table.
1534
1722
  *
1723
+ *
1535
1724
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1536
1725
  */
1537
1726
  iExecuteFullScreen(): object;
1538
1727
  /**
1539
1728
  * Executes an action that is available in a certain column within a table row.
1540
1729
  *
1730
+ *
1541
1731
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1542
1732
  */
1543
1733
  iExecuteInlineAction(
@@ -1560,6 +1750,7 @@ declare namespace sap {
1560
1750
  /**
1561
1751
  * Executes an action that is available in a certain column within a table row.
1562
1752
  *
1753
+ *
1563
1754
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1564
1755
  */
1565
1756
  iExecuteInlineAction(
@@ -1571,6 +1762,7 @@ declare namespace sap {
1571
1762
  /**
1572
1763
  * Executes the action to create a row in the table.
1573
1764
  *
1765
+ *
1574
1766
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1575
1767
  */
1576
1768
  iExecuteInlineCreate(): object;
@@ -1579,6 +1771,7 @@ declare namespace sap {
1579
1771
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
1580
1772
  * is executed on table cell level.
1581
1773
  *
1774
+ *
1582
1775
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1583
1776
  */
1584
1777
  iExecuteKeyboardShortcut(
@@ -1607,6 +1800,7 @@ declare namespace sap {
1607
1800
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
1608
1801
  * is executed on table cell level.
1609
1802
  *
1803
+ *
1610
1804
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1611
1805
  */
1612
1806
  iExecuteKeyboardShortcut(
@@ -1622,6 +1816,7 @@ declare namespace sap {
1622
1816
  /**
1623
1817
  * Executes an action form the drop-down menu that is currently open.
1624
1818
  *
1819
+ *
1625
1820
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1626
1821
  */
1627
1822
  iExecuteMenuAction(
@@ -1633,6 +1828,7 @@ declare namespace sap {
1633
1828
  /**
1634
1829
  * Executes the `Show/Hide details` action on the table.
1635
1830
  *
1831
+ *
1636
1832
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1637
1833
  */
1638
1834
  iExecuteShowHideDetails(
@@ -1645,6 +1841,7 @@ declare namespace sap {
1645
1841
  /**
1646
1842
  * Expands a row corresponding to a visual group.
1647
1843
  *
1844
+ *
1648
1845
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1649
1846
  */
1650
1847
  iExpandGroupRow(
@@ -1660,6 +1857,7 @@ declare namespace sap {
1660
1857
  /**
1661
1858
  * Groups the table entries by the specified column.
1662
1859
  *
1860
+ *
1663
1861
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1664
1862
  */
1665
1863
  iGroupByColumn(
@@ -1679,6 +1877,7 @@ declare namespace sap {
1679
1877
  /**
1680
1878
  * Pastes data into the table.
1681
1879
  *
1880
+ *
1682
1881
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1683
1882
  */
1684
1883
  iPasteData(
@@ -1690,6 +1889,7 @@ declare namespace sap {
1690
1889
  /**
1691
1890
  * Presses the control in the table cell.
1692
1891
  *
1892
+ *
1693
1893
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1694
1894
  */
1695
1895
  iPressCell(
@@ -1712,6 +1912,7 @@ declare namespace sap {
1712
1912
  /**
1713
1913
  * Presses the control in the table cell.
1714
1914
  *
1915
+ *
1715
1916
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1716
1917
  */
1717
1918
  iPressCell(
@@ -1723,6 +1924,7 @@ declare namespace sap {
1723
1924
  /**
1724
1925
  * Clicks the specified row.
1725
1926
  *
1927
+ *
1726
1928
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1727
1929
  */
1728
1930
  iPressRow(
@@ -1741,6 +1943,7 @@ declare namespace sap {
1741
1943
  /**
1742
1944
  * Removes a field as a column from the table.
1743
1945
  *
1946
+ *
1744
1947
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1745
1948
  */
1746
1949
  iRemoveAdaptationColumn(
@@ -1752,6 +1955,7 @@ declare namespace sap {
1752
1955
  /**
1753
1956
  * Removes the variant of the given name.
1754
1957
  *
1958
+ *
1755
1959
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1756
1960
  */
1757
1961
  iRemoveVariant(
@@ -1763,12 +1967,14 @@ declare namespace sap {
1763
1967
  /**
1764
1968
  * Resets the search field.
1765
1969
  *
1970
+ *
1766
1971
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1767
1972
  */
1768
1973
  iResetSearchField(): object;
1769
1974
  /**
1770
1975
  * Saves a variant under the given name, or overwrites the current one.
1771
1976
  *
1977
+ *
1772
1978
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1773
1979
  */
1774
1980
  iSaveVariant(
@@ -1780,12 +1986,14 @@ declare namespace sap {
1780
1986
  /**
1781
1987
  * Selects all rows in a table.
1782
1988
  *
1989
+ *
1783
1990
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1784
1991
  */
1785
1992
  iSelectAllRows(): object;
1786
1993
  /**
1787
1994
  * Selects a quick-filter item on the table.
1788
1995
  *
1996
+ *
1789
1997
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1790
1998
  */
1791
1999
  iSelectQuickFilterItem(
@@ -1804,6 +2012,7 @@ declare namespace sap {
1804
2012
  /**
1805
2013
  * Selects the specified rows.
1806
2014
  *
2015
+ *
1807
2016
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1808
2017
  */
1809
2018
  iSelectRows(
@@ -1826,6 +2035,7 @@ declare namespace sap {
1826
2035
  /**
1827
2036
  * Selects the chosen variant.
1828
2037
  *
2038
+ *
1829
2039
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1830
2040
  */
1831
2041
  iSelectVariant(
@@ -1837,6 +2047,7 @@ declare namespace sap {
1837
2047
  /**
1838
2048
  * Sets the variant as the default.
1839
2049
  *
2050
+ *
1840
2051
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1841
2052
  */
1842
2053
  iSetDefaultVariant(
@@ -1849,6 +2060,7 @@ declare namespace sap {
1849
2060
  /**
1850
2061
  * Sorts the table entries by the specified column.
1851
2062
  *
2063
+ *
1852
2064
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1853
2065
  */
1854
2066
  iSortByColumn(
@@ -1877,52 +2089,65 @@ declare namespace sap {
1877
2089
  }
1878
2090
 
1879
2091
  class TableAPI {
1880
- constructor();
2092
+ /**
2093
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2094
+ */
2095
+ protected constructor();
1881
2096
 
1882
2097
  /**
1883
2098
  * Confirms and closes the adaptation dialog of the table.
1884
2099
  *
2100
+ *
1885
2101
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1886
2102
  */
1887
2103
  iConfirmColumnAdaptation(): object;
1888
2104
  /**
1889
2105
  * Confirms and closes the sorting dialog of the table.
1890
2106
  *
2107
+ *
1891
2108
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1892
2109
  */
1893
2110
  iConfirmColumnSorting(): object;
1894
2111
  /**
1895
2112
  * Confirms and closes the filtering dialog of the table.
1896
2113
  *
2114
+ *
1897
2115
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1898
2116
  */
1899
2117
  iConfirmFilterDialog(): object;
1900
2118
  /**
1901
2119
  * Opens the column adaptation dialog of the table.
1902
2120
  *
2121
+ *
1903
2122
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1904
2123
  */
1905
2124
  iOpenColumnAdaptation(): object;
1906
2125
  /**
1907
2126
  * Opens the sorting dialog of the table.
1908
2127
  *
2128
+ *
1909
2129
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1910
2130
  */
1911
2131
  iOpenColumnSorting(): object;
1912
2132
  /**
1913
2133
  * Opens the filtering dialog of the table.
1914
2134
  *
2135
+ *
1915
2136
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1916
2137
  */
1917
2138
  iOpenFilterDialog(): object;
1918
2139
  }
1919
2140
 
1920
2141
  class TableAssertions extends sap.fe.test.api.TableAPI {
1921
- constructor();
2142
+ /**
2143
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2144
+ */
2145
+ protected constructor();
1922
2146
 
1923
2147
  /**
1924
2148
  * Checks the state of a table action.
1925
2149
  *
2150
+ *
1926
2151
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1927
2152
  */
1928
2153
  iCheckAction(
@@ -1938,6 +2163,7 @@ declare namespace sap {
1938
2163
  /**
1939
2164
  * Checks a field in the adaptation dialog.
1940
2165
  *
2166
+ *
1941
2167
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1942
2168
  */
1943
2169
  iCheckAdaptationColumn(
@@ -1953,6 +2179,7 @@ declare namespace sap {
1953
2179
  /**
1954
2180
  * Checks the state of the cells of a table.
1955
2181
  *
2182
+ *
1956
2183
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1957
2184
  */
1958
2185
  iCheckCells(
@@ -1983,6 +2210,7 @@ declare namespace sap {
1983
2210
  /**
1984
2211
  * Checks the state of the cells of a table.
1985
2212
  *
2213
+ *
1986
2214
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1987
2215
  */
1988
2216
  iCheckCells(
@@ -2002,24 +2230,28 @@ declare namespace sap {
2002
2230
  /**
2003
2231
  * Checks whether the adaptation button is available for the table.
2004
2232
  *
2233
+ *
2005
2234
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2006
2235
  */
2007
2236
  iCheckColumnAdaptation(): object;
2008
2237
  /**
2009
2238
  * Checks whether the column adaptation dialog is open.
2010
2239
  *
2240
+ *
2011
2241
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2012
2242
  */
2013
2243
  iCheckColumnAdaptationDialog(): object;
2014
2244
  /**
2015
2245
  * Checks whether the filter button is available for the table.
2016
2246
  *
2247
+ *
2017
2248
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2018
2249
  */
2019
2250
  iCheckColumnFiltering(): object;
2020
2251
  /**
2021
2252
  * Checks the state of the columns of the table.
2022
2253
  *
2254
+ *
2023
2255
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2024
2256
  */
2025
2257
  iCheckColumns(
@@ -2043,12 +2275,14 @@ declare namespace sap {
2043
2275
  /**
2044
2276
  * Checks whether the sort button is available for the table.
2045
2277
  *
2278
+ *
2046
2279
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2047
2280
  */
2048
2281
  iCheckColumnSorting(): object;
2049
2282
  /**
2050
2283
  * Checks the `Create` action of the table.
2051
2284
  *
2285
+ *
2052
2286
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2053
2287
  */
2054
2288
  iCheckCreate(
@@ -2060,6 +2294,7 @@ declare namespace sap {
2060
2294
  /**
2061
2295
  * Checks the state of the CreationRow button in the table.
2062
2296
  *
2297
+ *
2063
2298
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2064
2299
  */
2065
2300
  iCheckCreationRow(
@@ -2081,6 +2316,7 @@ declare namespace sap {
2081
2316
  /**
2082
2317
  * Checks the `Delete` action of the table.
2083
2318
  *
2319
+ *
2084
2320
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2085
2321
  */
2086
2322
  iCheckDelete(
@@ -2092,12 +2328,14 @@ declare namespace sap {
2092
2328
  /**
2093
2329
  * Checks whether the export button is available for the table.
2094
2330
  *
2331
+ *
2095
2332
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2096
2333
  */
2097
2334
  iCheckExport(): object;
2098
2335
  /**
2099
2336
  * Checks, if a filter field is available in the filter dialog.
2100
2337
  *
2338
+ *
2101
2339
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2102
2340
  */
2103
2341
  iCheckFilterField(
@@ -2113,6 +2351,7 @@ declare namespace sap {
2113
2351
  /**
2114
2352
  * Checks the `Fullscreen` action of the table.
2115
2353
  *
2354
+ *
2116
2355
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2117
2356
  */
2118
2357
  iCheckFullScreen(
@@ -2124,6 +2363,7 @@ declare namespace sap {
2124
2363
  /**
2125
2364
  * Checks an action in the drop-down menu that is currently open.
2126
2365
  *
2366
+ *
2127
2367
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2128
2368
  */
2129
2369
  iCheckMenuAction(
@@ -2135,6 +2375,7 @@ declare namespace sap {
2135
2375
  /**
2136
2376
  * Checks a messageStrip on a table.
2137
2377
  *
2378
+ *
2138
2379
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2139
2380
  */
2140
2381
  iCheckMessageStrip(
@@ -2146,12 +2387,14 @@ declare namespace sap {
2146
2387
  /**
2147
2388
  * Checks whether the paste button is available for the table.
2148
2389
  *
2390
+ *
2149
2391
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2150
2392
  */
2151
2393
  iCheckPaste(): object;
2152
2394
  /**
2153
2395
  * Checks the quick filter action of the table.
2154
2396
  *
2397
+ *
2155
2398
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2156
2399
  */
2157
2400
  iCheckQuickFilter(
@@ -2163,6 +2406,7 @@ declare namespace sap {
2163
2406
  /**
2164
2407
  * Checks the number of items in the quick-filter menu.
2165
2408
  *
2409
+ *
2166
2410
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2167
2411
  */
2168
2412
  iCheckQuickFilterItems(
@@ -2177,6 +2421,7 @@ declare namespace sap {
2177
2421
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
2178
2422
  * row. If `mState` is provided, the row must be in the given state.
2179
2423
  *
2424
+ *
2180
2425
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2181
2426
  */
2182
2427
  iCheckRows(
@@ -2208,6 +2453,7 @@ declare namespace sap {
2208
2453
  * Checks the search field in the table toolbar. If the `sSearchText` parameter is `undefined`, the search
2209
2454
  * text is not validated.
2210
2455
  *
2456
+ *
2211
2457
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
2212
2458
  */
2213
2459
  iCheckSearchField(
@@ -2223,6 +2469,7 @@ declare namespace sap {
2223
2469
  /**
2224
2470
  * Checks a field in the sorting dialog.
2225
2471
  *
2472
+ *
2226
2473
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2227
2474
  */
2228
2475
  iCheckSortOrder(
@@ -2242,6 +2489,7 @@ declare namespace sap {
2242
2489
  /**
2243
2490
  * Checks the state of the table.
2244
2491
  *
2492
+ *
2245
2493
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2246
2494
  */
2247
2495
  iCheckState(
@@ -2253,12 +2501,14 @@ declare namespace sap {
2253
2501
  /**
2254
2502
  * Checks if the focus is on a table.
2255
2503
  *
2504
+ *
2256
2505
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2257
2506
  */
2258
2507
  iSeeFocusOnHeader(): object;
2259
2508
  /**
2260
2509
  * Checks if the focus is on a table row.
2261
2510
  *
2511
+ *
2262
2512
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2263
2513
  */
2264
2514
  iSeeFocusOnRow(
@@ -2509,6 +2759,7 @@ declare namespace sap {
2509
2759
  /**
2510
2760
  * Collapses or expands the page header.
2511
2761
  *
2762
+ *
2512
2763
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2513
2764
  */
2514
2765
  iCollapseExpandPageHeader(
@@ -2520,6 +2771,7 @@ declare namespace sap {
2520
2771
  /**
2521
2772
  * Navigates to or focuses on the defined view of a Multiple Views List Report table.
2522
2773
  *
2774
+ *
2523
2775
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2524
2776
  */
2525
2777
  iGoToView(
@@ -2540,18 +2792,21 @@ declare namespace sap {
2540
2792
  /**
2541
2793
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
2542
2794
  *
2795
+ *
2543
2796
  * @returns The available filter bar actions
2544
2797
  */
2545
2798
  onFilterBar(): sap.fe.test.api.FilterBarActions;
2546
2799
  /**
2547
2800
  * Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
2548
2801
  *
2802
+ *
2549
2803
  * @returns The available header actions
2550
2804
  */
2551
2805
  onHeader(): sap.fe.test.api.HeaderActionsLR;
2552
2806
  /**
2553
2807
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
2554
2808
  *
2809
+ *
2555
2810
  * @returns The available table actions
2556
2811
  */
2557
2812
  onTable(
@@ -2569,6 +2824,7 @@ declare namespace sap {
2569
2824
  /**
2570
2825
  * Checks the view of a Multiple View List Report table.
2571
2826
  *
2827
+ *
2572
2828
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2573
2829
  */
2574
2830
  iCheckView(
@@ -2599,18 +2855,21 @@ declare namespace sap {
2599
2855
  /**
2600
2856
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
2601
2857
  *
2858
+ *
2602
2859
  * @returns The available filter bar assertions
2603
2860
  */
2604
2861
  onFilterBar(): sap.fe.test.api.FilterBarAssertions;
2605
2862
  /**
2606
2863
  * Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
2607
2864
  *
2865
+ *
2608
2866
  * @returns The available header assertions
2609
2867
  */
2610
2868
  onHeader(): sap.fe.test.api.HeaderAssertionsLR;
2611
2869
  /**
2612
2870
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
2613
2871
  *
2872
+ *
2614
2873
  * @returns The available table assertions
2615
2874
  */
2616
2875
  onTable(
@@ -2630,6 +2889,7 @@ declare namespace sap {
2630
2889
  /**
2631
2890
  * Collapses or expands the page header.
2632
2891
  *
2892
+ *
2633
2893
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2634
2894
  */
2635
2895
  iCollapseExpandPageHeader(
@@ -2641,6 +2901,7 @@ declare namespace sap {
2641
2901
  /**
2642
2902
  * Navigates to or focuses on the defined section.
2643
2903
  *
2904
+ *
2644
2905
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2645
2906
  */
2646
2907
  iGoToSection(
@@ -2667,6 +2928,7 @@ declare namespace sap {
2667
2928
  /**
2668
2929
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
2669
2930
  *
2931
+ *
2670
2932
  * @returns The available filter bar actions
2671
2933
  */
2672
2934
  onFilterBar(
@@ -2680,12 +2942,14 @@ declare namespace sap {
2680
2942
  /**
2681
2943
  * Returns a {@link sap.fe.test.api.FooterActionsOP} instance.
2682
2944
  *
2945
+ *
2683
2946
  * @returns The available footer actions
2684
2947
  */
2685
2948
  onFooter(): sap.fe.test.api.FooterActionsOP;
2686
2949
  /**
2687
2950
  * Returns a {@link sap.fe.test.api.FormActions} instance.
2688
2951
  *
2952
+ *
2689
2953
  * @returns The available form actions
2690
2954
  */
2691
2955
  onForm(
@@ -2697,12 +2961,14 @@ declare namespace sap {
2697
2961
  /**
2698
2962
  * Returns a {@link sap.fe.test.api.HeaderActions} instance.
2699
2963
  *
2964
+ *
2700
2965
  * @returns The available header actions
2701
2966
  */
2702
2967
  onHeader(): sap.fe.test.api.HeaderActions;
2703
2968
  /**
2704
2969
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
2705
2970
  *
2971
+ *
2706
2972
  * @returns The available table actions
2707
2973
  */
2708
2974
  onTable(
@@ -2720,6 +2986,7 @@ declare namespace sap {
2720
2986
  /**
2721
2987
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
2722
2988
  *
2989
+ *
2723
2990
  * @returns The available filter bar assertions
2724
2991
  */
2725
2992
  onFilterBar(
@@ -2733,12 +3000,14 @@ declare namespace sap {
2733
3000
  /**
2734
3001
  * Returns a {@link sap.fe.test.api.FooterAssertionsOP} instance.
2735
3002
  *
3003
+ *
2736
3004
  * @returns The available footer assertions
2737
3005
  */
2738
3006
  onFooter(): sap.fe.test.api.FooterAssertionsOP;
2739
3007
  /**
2740
3008
  * Returns a {@link sap.fe.test.api.FormAssertions} instance.
2741
3009
  *
3010
+ *
2742
3011
  * @returns The available form actions
2743
3012
  */
2744
3013
  onForm(
@@ -2750,12 +3019,14 @@ declare namespace sap {
2750
3019
  /**
2751
3020
  * Returns a {@link sap.fe.test.api.HeaderAssertions} instance.
2752
3021
  *
3022
+ *
2753
3023
  * @returns The available header assertions
2754
3024
  */
2755
3025
  onHeader(): sap.fe.test.api.HeaderAssertions;
2756
3026
  /**
2757
3027
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
2758
3028
  *
3029
+ *
2759
3030
  * @returns The available table assertions
2760
3031
  */
2761
3032
  onTable(
@@ -2775,24 +3046,28 @@ declare namespace sap {
2775
3046
  /**
2776
3047
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
2777
3048
  *
3049
+ *
2778
3050
  * @returns The available dialog actions
2779
3051
  */
2780
3052
  onActionDialog(): sap.fe.test.api.DialogActions;
2781
3053
  /**
2782
3054
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
2783
3055
  *
3056
+ *
2784
3057
  * @returns The available dialog actions
2785
3058
  */
2786
3059
  onConfirmationDialog(): sap.fe.test.api.DialogActions;
2787
3060
  /**
2788
3061
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
2789
3062
  *
3063
+ *
2790
3064
  * @returns The available dialog actions
2791
3065
  */
2792
3066
  onCreateDialog(): sap.fe.test.api.DialogCreateActions;
2793
3067
  /**
2794
3068
  * Returns a {@link sap.fe.test.api.DialogActions} instance.
2795
3069
  *
3070
+ *
2796
3071
  * @returns The available dialog actions
2797
3072
  */
2798
3073
  onDialog(
@@ -2804,18 +3079,21 @@ declare namespace sap {
2804
3079
  /**
2805
3080
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
2806
3081
  *
3082
+ *
2807
3083
  * @returns The available dialog actions
2808
3084
  */
2809
3085
  onErrorDialog(): sap.fe.test.api.DialogActions;
2810
3086
  /**
2811
3087
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
2812
3088
  *
3089
+ *
2813
3090
  * @returns The available dialog actions
2814
3091
  */
2815
3092
  onMessageDialog(): sap.fe.test.api.DialogMessageActions;
2816
3093
  /**
2817
3094
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
2818
3095
  *
3096
+ *
2819
3097
  * @returns The available dialog actions
2820
3098
  */
2821
3099
  onValueHelpDialog(): sap.fe.test.api.DialogValueHelpActions;
@@ -2828,30 +3106,35 @@ declare namespace sap {
2828
3106
  /**
2829
3107
  * Confirms the visibility of the current page.
2830
3108
  *
3109
+ *
2831
3110
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2832
3111
  */
2833
3112
  iSeeThisPage(): object;
2834
3113
  /**
2835
3114
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
2836
3115
  *
3116
+ *
2837
3117
  * @returns The available dialog assertions
2838
3118
  */
2839
3119
  onActionDialog(): sap.fe.test.api.DialogAssertions;
2840
3120
  /**
2841
3121
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
2842
3122
  *
3123
+ *
2843
3124
  * @returns The available dialog assertions
2844
3125
  */
2845
3126
  onConfirmationDialog(): sap.fe.test.api.DialogAssertions;
2846
3127
  /**
2847
3128
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
2848
3129
  *
3130
+ *
2849
3131
  * @returns The available dialog assertions
2850
3132
  */
2851
3133
  onCreateDialog(): sap.fe.test.api.DialogCreateAssertions;
2852
3134
  /**
2853
3135
  * Returns a {@link sap.fe.test.api.DialogAssertions} instance.
2854
3136
  *
3137
+ *
2855
3138
  * @returns The available dialog actions
2856
3139
  */
2857
3140
  onDialog(
@@ -2863,18 +3146,21 @@ declare namespace sap {
2863
3146
  /**
2864
3147
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
2865
3148
  *
3149
+ *
2866
3150
  * @returns The available dialog assertions
2867
3151
  */
2868
3152
  onErrorDialog(): sap.fe.test.api.DialogAssertions;
2869
3153
  /**
2870
3154
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
2871
3155
  *
3156
+ *
2872
3157
  * @returns The available dialog assertions
2873
3158
  */
2874
3159
  onMessageDialog(): sap.fe.test.api.DialogMessageAssertions;
2875
3160
  /**
2876
3161
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
2877
3162
  *
3163
+ *
2878
3164
  * @returns The available dialog assertions
2879
3165
  */
2880
3166
  onValueHelpDialog(): sap.fe.test.api.DialogValueHelpAssertions;
@@ -2922,6 +3208,7 @@ declare namespace sap {
2922
3208
  *
2923
3209
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2924
3210
  *
3211
+ *
2925
3212
  * @returns Created class / constructor function
2926
3213
  */
2927
3214
  static extend<T extends Record<string, unknown>>(
@@ -2942,12 +3229,14 @@ declare namespace sap {
2942
3229
  /**
2943
3230
  * Gets the global journey runner instance.
2944
3231
  *
3232
+ *
2945
3233
  * @returns The global default {@link sap.fe.test.JourneyRunner} instance
2946
3234
  */
2947
3235
  static getDefaultRunner(): object;
2948
3236
  /**
2949
3237
  * Returns a metadata object for class sap.fe.test.JourneyRunner.
2950
3238
  *
3239
+ *
2951
3240
  * @returns Metadata object describing this class
2952
3241
  */
2953
3242
  static getMetadata(): sap.ui.base.Metadata;
@@ -2968,8 +3257,6 @@ declare namespace sap {
2968
3257
  oDefaultRunner: sap.fe.test.JourneyRunner
2969
3258
  ): void;
2970
3259
  /**
2971
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2972
- *
2973
3260
  * Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2974
3261
  * `actions` setting.
2975
3262
  *
@@ -2978,12 +3265,12 @@ declare namespace sap {
2978
3265
  *
2979
3266
  * By default, an instance of {@link sap.fe.test.BaseActions} will be returned.
2980
3267
  *
3268
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3269
+ *
2981
3270
  * @returns An Opa instance for the base actions
2982
3271
  */
2983
3272
  getBaseActions(): sap.ui.test.Opa;
2984
3273
  /**
2985
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2986
- *
2987
3274
  * Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2988
3275
  * `arrangements` setting.
2989
3276
  *
@@ -2992,6 +3279,8 @@ declare namespace sap {
2992
3279
  *
2993
3280
  * By default, an instance of {@link sap.fe.test.BaseArrangements} will be returned.
2994
3281
  *
3282
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3283
+ *
2995
3284
  * @returns An Opa instance for the base arrangements
2996
3285
  */
2997
3286
  getBaseArrangements(
@@ -3001,8 +3290,6 @@ declare namespace sap {
3001
3290
  mSettings: object
3002
3291
  ): sap.ui.test.Opa;
3003
3292
  /**
3004
- * @ui5-protected Do not call from applications (only from related classes in the framework)
3005
- *
3006
3293
  * Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
3007
3294
  * `assertions` setting.
3008
3295
  *
@@ -3011,6 +3298,8 @@ declare namespace sap {
3011
3298
  *
3012
3299
  * By default, an instance of {@link sap.fe.test.BaseAssertions} will be returned.
3013
3300
  *
3301
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3302
+ *
3014
3303
  * @returns An Opa instance for the base assertions
3015
3304
  */
3016
3305
  getBaseAssertions(): sap.ui.test.Opa;
@@ -3019,6 +3308,7 @@ declare namespace sap {
3019
3308
  *
3020
3309
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
3021
3310
  *
3311
+ *
3022
3312
  * @returns A `Promise` that is resolved after all tests have been executed
3023
3313
  */
3024
3314
  run(
@@ -3061,6 +3351,7 @@ declare namespace sap {
3061
3351
  *
3062
3352
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
3063
3353
  *
3354
+ *
3064
3355
  * @returns A `Promise` that is resolved after all tests have been executed
3065
3356
  */
3066
3357
  run(
@@ -3176,6 +3467,7 @@ declare namespace sap {
3176
3467
  * Check an intent-based navigation. The function checks the semantic object and the action within the URL
3177
3468
  * of an application. Optionally, further URL parameters can be checked.
3178
3469
  *
3470
+ *
3179
3471
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3180
3472
  */
3181
3473
  iCheckIntentBasedNavigation(
@@ -3202,18 +3494,21 @@ declare namespace sap {
3202
3494
  /**
3203
3495
  * Navigates back via shell back button.
3204
3496
  *
3497
+ *
3205
3498
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3206
3499
  */
3207
3500
  iNavigateBack(): object;
3208
3501
  /**
3209
3502
  * Navigates to the launch pad via the home button.
3210
3503
  *
3504
+ *
3211
3505
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3212
3506
  */
3213
3507
  iNavigateHome(): object;
3214
3508
  /**
3215
3509
  * Navigates via a navigation item in the shell's navigation menu.
3216
3510
  *
3511
+ *
3217
3512
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3218
3513
  */
3219
3514
  iNavigateViaMenu(
@@ -3225,6 +3520,7 @@ declare namespace sap {
3225
3520
  /**
3226
3521
  * Opens the navigation menu in the shell header.
3227
3522
  *
3523
+ *
3228
3524
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3229
3525
  */
3230
3526
  iOpenNavigationMenu(
@@ -3237,6 +3533,7 @@ declare namespace sap {
3237
3533
  /**
3238
3534
  * Selecting a tile in the launchpad by its target app, for example `iPressTile("SalesOrder-manage")`.
3239
3535
  *
3536
+ *
3240
3537
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3241
3538
  */
3242
3539
  iPressTile(
@@ -3250,7 +3547,10 @@ declare namespace sap {
3250
3547
  * Provides a test page definition for a template page with the corresponding parameters.
3251
3548
  */
3252
3549
  class TemplatePage {
3253
- constructor();
3550
+ /**
3551
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3552
+ */
3553
+ protected constructor();
3254
3554
  }
3255
3555
  }
3256
3556
  }