@sapui5/types 1.120.8 → 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 +1112 -544
  5. package/types/sap.chart.d.ts +17 -1
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1870
  8. package/types/sap.f.d.ts +124 -45
  9. package/types/sap.fe.core.d.ts +221 -191
  10. package/types/sap.fe.macros.d.ts +461 -568
  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 +9 -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 +3938 -1749
  19. package/types/sap.insights.d.ts +165 -43
  20. package/types/sap.m.d.ts +2103 -301
  21. package/types/sap.makit.d.ts +11 -1
  22. package/types/sap.me.d.ts +7 -1
  23. package/types/sap.ndc.d.ts +1 -1
  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 +270 -47
  27. package/types/sap.suite.ui.commons.d.ts +4323 -1016
  28. package/types/sap.suite.ui.generic.template.d.ts +38 -48
  29. package/types/sap.suite.ui.microchart.d.ts +63 -1
  30. package/types/sap.tnt.d.ts +628 -113
  31. package/types/sap.ui.codeeditor.d.ts +10 -6
  32. package/types/sap.ui.commons.d.ts +92 -8
  33. package/types/sap.ui.comp.d.ts +260 -111
  34. package/types/sap.ui.core.d.ts +500 -186
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +16 -3
  37. package/types/sap.ui.fl.d.ts +91 -68
  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 +51 -4
  41. package/types/sap.ui.layout.d.ts +214 -27
  42. package/types/sap.ui.mdc.d.ts +1553 -820
  43. package/types/sap.ui.richtexteditor.d.ts +4 -1
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +3 -1
  46. package/types/sap.ui.support.d.ts +28 -4
  47. package/types/sap.ui.table.d.ts +65 -11
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +157 -54
  50. package/types/sap.ui.ux3.d.ts +30 -12
  51. package/types/sap.ui.vbm.d.ts +6081 -3279
  52. package/types/sap.ui.vk.d.ts +2742 -837
  53. package/types/sap.ui.vtm.d.ts +681 -211
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +49 -1
  56. package/types/sap.ui.webc.main.d.ts +144 -9
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +4394 -3926
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +52 -5
  61. package/types/sap.viz.d.ts +89 -1
  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 +81 -13
  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 module "sap/fe/test/library" {}
4
4
 
@@ -136,41 +136,50 @@ declare module "sap/fe/test/api/TableAPI" {
136
136
  };
137
137
 
138
138
  export default class TableAPI {
139
- constructor();
139
+ /**
140
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
141
+ */
142
+ protected constructor();
140
143
 
141
144
  /**
142
145
  * Confirms and closes the adaptation dialog of the table.
143
146
  *
147
+ *
144
148
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
145
149
  */
146
150
  iConfirmColumnAdaptation(): object;
147
151
  /**
148
152
  * Confirms and closes the sorting dialog of the table.
149
153
  *
154
+ *
150
155
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
151
156
  */
152
157
  iConfirmColumnSorting(): object;
153
158
  /**
154
159
  * Confirms and closes the filtering dialog of the table.
155
160
  *
161
+ *
156
162
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
157
163
  */
158
164
  iConfirmFilterDialog(): object;
159
165
  /**
160
166
  * Opens the column adaptation dialog of the table.
161
167
  *
168
+ *
162
169
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
163
170
  */
164
171
  iOpenColumnAdaptation(): object;
165
172
  /**
166
173
  * Opens the sorting dialog of the table.
167
174
  *
175
+ *
168
176
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
169
177
  */
170
178
  iOpenColumnSorting(): object;
171
179
  /**
172
180
  * Opens the filtering dialog of the table.
173
181
  *
182
+ *
174
183
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
175
184
  */
176
185
  iOpenFilterDialog(): object;
@@ -181,17 +190,22 @@ declare module "sap/fe/test/api/DialogActions" {
181
190
  import { DialogFieldIdentifier } from "sap/fe/test/api/BaseAPI";
182
191
 
183
192
  export default class DialogActions {
184
- constructor();
193
+ /**
194
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
195
+ */
196
+ protected constructor();
185
197
 
186
198
  /**
187
199
  * Cancels the dialog by clicking the corresponding button (for example, 'Cancel').
188
200
  *
201
+ *
189
202
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
190
203
  */
191
204
  iCancel(): object;
192
205
  /**
193
206
  * Changes the content of a field in a dialog.
194
207
  *
208
+ *
195
209
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
196
210
  */
197
211
  iChangeDialogField(
@@ -211,12 +225,14 @@ declare module "sap/fe/test/api/DialogActions" {
211
225
  /**
212
226
  * Closes the dialog by pressing the 'Escape' key.
213
227
  *
228
+ *
214
229
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
215
230
  */
216
231
  iClose(): object;
217
232
  /**
218
233
  * Confirms the dialog by clicking the corresponding button (for example, 'OK').
219
234
  *
235
+ *
220
236
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
221
237
  */
222
238
  iConfirm(): object;
@@ -230,11 +246,15 @@ declare module "sap/fe/test/api/DialogAssertions" {
230
246
  } from "sap/fe/test/api/BaseAPI";
231
247
 
232
248
  export default class DialogAssertions {
233
- constructor();
249
+ /**
250
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
251
+ */
252
+ protected constructor();
234
253
 
235
254
  /**
236
255
  * Checks the content and state of a field in an action parameter dialog.
237
256
  *
257
+ *
238
258
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
239
259
  */
240
260
  iCheckActionParameterDialogField(
@@ -260,6 +280,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
260
280
  /**
261
281
  * Checks the cancellation button of the dialog.
262
282
  *
283
+ *
263
284
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
264
285
  */
265
286
  iCheckCancel(
@@ -271,6 +292,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
271
292
  /**
272
293
  * Checks the confirmation button of the dialog.
273
294
  *
295
+ *
274
296
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
275
297
  */
276
298
  iCheckConfirm(
@@ -282,6 +304,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
282
304
  /**
283
305
  * Checks the content and state of a field in a dialog.
284
306
  *
307
+ *
285
308
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
286
309
  */
287
310
  iCheckDialogField(
@@ -307,6 +330,7 @@ declare module "sap/fe/test/api/DialogAssertions" {
307
330
  /**
308
331
  * Checks the dialog.
309
332
  *
333
+ *
310
334
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
311
335
  */
312
336
  iCheckState(
@@ -322,11 +346,15 @@ declare module "sap/fe/test/api/DialogCreateActions" {
322
346
  import DialogActions from "sap/fe/test/api/DialogActions";
323
347
 
324
348
  export default class DialogCreateActions extends DialogActions {
325
- constructor();
349
+ /**
350
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
351
+ */
352
+ protected constructor();
326
353
 
327
354
  /**
328
355
  * Executes the `Create` action on the create dialog.
329
356
  *
357
+ *
330
358
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
331
359
  */
332
360
  iExecuteCreate(): object;
@@ -337,11 +365,15 @@ declare module "sap/fe/test/api/DialogCreateAssertions" {
337
365
  import DialogAssertions from "sap/fe/test/api/DialogAssertions";
338
366
 
339
367
  export default class DialogCreateAssertions extends DialogAssertions {
340
- constructor();
368
+ /**
369
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
370
+ */
371
+ protected constructor();
341
372
 
342
373
  /**
343
374
  * Checks the `Create` action on the dialog.
344
375
  *
376
+ *
345
377
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
346
378
  */
347
379
  iCheckCreate(
@@ -357,23 +389,29 @@ declare module "sap/fe/test/api/DialogMessageActions" {
357
389
  import DialogActions from "sap/fe/test/api/DialogActions";
358
390
 
359
391
  export default class DialogMessageActions extends DialogActions {
360
- constructor();
392
+ /**
393
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
394
+ */
395
+ protected constructor();
361
396
 
362
397
  /**
363
398
  * Executes the `Back` action on the message dialog.
364
399
  *
400
+ *
365
401
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
366
402
  */
367
403
  iExecuteBack(): object;
368
404
  /**
369
405
  * Executes the `Refresh` action on the message dialog.
370
406
  *
407
+ *
371
408
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
372
409
  */
373
410
  iExecuteRefresh(): object;
374
411
  /**
375
412
  * Selects the specified entry in the draft data loss popup.
376
413
  *
414
+ *
377
415
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
378
416
  */
379
417
  iSelectDraftDataLossOption(optionKey: any): object;
@@ -384,11 +422,15 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
384
422
  import DialogAssertions from "sap/fe/test/api/DialogAssertions";
385
423
 
386
424
  export default class DialogMessageAssertions extends DialogAssertions {
387
- constructor();
425
+ /**
426
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
427
+ */
428
+ protected constructor();
388
429
 
389
430
  /**
390
431
  * Checks the `Back` action on the message dialog.
391
432
  *
433
+ *
392
434
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
393
435
  */
394
436
  iCheckBack(
@@ -400,6 +442,7 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
400
442
  /**
401
443
  * Checks whether a certain message is shown in the dialog.
402
444
  *
445
+ *
403
446
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
404
447
  */
405
448
  iCheckMessage(
@@ -411,6 +454,7 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
411
454
  /**
412
455
  * Checks the `Refresh` action on the dialog.
413
456
  *
457
+ *
414
458
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
415
459
  */
416
460
  iCheckRefresh(
@@ -461,11 +505,15 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
461
505
  import { FilterFieldIdentifier } from "sap/fe/test/api/FilterBarAPI";
462
506
 
463
507
  export default class DialogValueHelpActions extends DialogActions {
464
- constructor();
508
+ /**
509
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
510
+ */
511
+ protected constructor();
465
512
 
466
513
  /**
467
514
  * Adds a new condition.
468
515
  *
516
+ *
469
517
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
470
518
  */
471
519
  iAddCondition(
@@ -482,6 +530,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
482
530
  /**
483
531
  * Changes an existing condition.
484
532
  *
533
+ *
485
534
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
486
535
  */
487
536
  iChangeCondition(
@@ -502,6 +551,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
502
551
  /**
503
552
  * Changes the value of a filter field.
504
553
  *
554
+ *
505
555
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
506
556
  */
507
557
  iChangeFilterField(
@@ -521,6 +571,7 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
521
571
  /**
522
572
  * Changes the value of the search field.
523
573
  *
574
+ *
524
575
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
525
576
  */
526
577
  iChangeSearchField(
@@ -532,30 +583,35 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
532
583
  /**
533
584
  * Starts the search.
534
585
  *
586
+ *
535
587
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
536
588
  */
537
589
  iExecuteSearch(): object;
538
590
  /**
539
591
  * Clicks the `Hide/Show Filters` button.
540
592
  *
593
+ *
541
594
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
542
595
  */
543
596
  iExecuteShowHideFilters(): object;
544
597
  /**
545
598
  * Navigates to the `Define Conditions` tab.
546
599
  *
600
+ *
547
601
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
548
602
  */
549
603
  iGoToDefineConditions(): object;
550
604
  /**
551
605
  * Navigates to the `Search and Select` tab.
552
606
  *
607
+ *
553
608
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
554
609
  */
555
610
  iGoToSearchAndSelect(): object;
556
611
  /**
557
612
  * Removes an existing condition.
558
613
  *
614
+ *
559
615
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
560
616
  */
561
617
  iRemoveCondition(
@@ -567,12 +623,14 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
567
623
  /**
568
624
  * Resets the search field value.
569
625
  *
626
+ *
570
627
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
571
628
  */
572
629
  iResetSearchField(): object;
573
630
  /**
574
631
  * Selects the specified rows.
575
632
  *
633
+ *
576
634
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
577
635
  */
578
636
  iSelectRows(
@@ -601,12 +659,16 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
601
659
  import { FilterFieldIdentifier } from "sap/fe/test/api/FilterBarAPI";
602
660
 
603
661
  export default class DialogValueHelpAssertions extends DialogAssertions {
604
- constructor();
662
+ /**
663
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
664
+ */
665
+ protected constructor();
605
666
 
606
667
  /**
607
668
  * Checks the `Define conditions` tab in a value help dialog. Please be aware that the tab control of the
608
669
  * toolbar is checked.
609
670
  *
671
+ *
610
672
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
611
673
  */
612
674
  iCheckDefineConditions(
@@ -618,6 +680,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
618
680
  /**
619
681
  * Checks the filter bar.
620
682
  *
683
+ *
621
684
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
622
685
  */
623
686
  iCheckFilterBar(
@@ -629,6 +692,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
629
692
  /**
630
693
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
631
694
  *
695
+ *
632
696
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
633
697
  */
634
698
  iCheckFilterField(
@@ -655,6 +719,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
655
719
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
656
720
  * row. If `mState` is provided, the row must be in the given state.
657
721
  *
722
+ *
658
723
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
659
724
  */
660
725
  iCheckRows(
@@ -681,6 +746,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
681
746
  * Checks the `Search and Select` tab in a value help dialog. Please be aware that the tab control of the
682
747
  * toolbar is checked.
683
748
  *
749
+ *
684
750
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
685
751
  */
686
752
  iCheckSearchAndSelect(
@@ -693,6 +759,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
693
759
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
694
760
  * text is not validated.
695
761
  *
762
+ *
696
763
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
697
764
  */
698
765
  iCheckSearchField(
@@ -708,6 +775,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
708
775
  /**
709
776
  * Checks the dialog.
710
777
  *
778
+ *
711
779
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
712
780
  */
713
781
  iCheckState(
@@ -719,6 +787,7 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
719
787
  /**
720
788
  * Checks the table.
721
789
  *
790
+ *
722
791
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
723
792
  */
724
793
  iCheckTable(
@@ -772,11 +841,15 @@ declare module "sap/fe/test/api/FilterBarActions" {
772
841
  import EditState from "sap/fe/test/api/EditState";
773
842
 
774
843
  export default class FilterBarActions extends FilterBarAPI {
775
- constructor();
844
+ /**
845
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
846
+ */
847
+ protected constructor();
776
848
 
777
849
  /**
778
850
  * Adds a field as a filter field.
779
851
  *
852
+ *
780
853
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
781
854
  */
782
855
  iAddAdaptationFilterField(
@@ -788,6 +861,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
788
861
  /**
789
862
  * Changes the editing status filter field.
790
863
  *
864
+ *
791
865
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
792
866
  */
793
867
  iChangeEditingStatus(
@@ -799,6 +873,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
799
873
  /**
800
874
  * Changes the value of the defined filter field.
801
875
  *
876
+ *
802
877
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
803
878
  */
804
879
  iChangeFilterField(
@@ -818,6 +893,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
818
893
  /**
819
894
  * Changes the search field.
820
895
  *
896
+ *
821
897
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
822
898
  */
823
899
  iChangeSearchField(
@@ -829,6 +905,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
829
905
  /**
830
906
  * Executes a keyboard shortcut.
831
907
  *
908
+ *
832
909
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
833
910
  */
834
911
  iExecuteKeyboardShortcut(
@@ -844,12 +921,14 @@ declare module "sap/fe/test/api/FilterBarActions" {
844
921
  /**
845
922
  * Executes the search with the current filters.
846
923
  *
924
+ *
847
925
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
848
926
  */
849
927
  iExecuteSearch(): object;
850
928
  /**
851
929
  * Opens the value help of the given field.
852
930
  *
931
+ *
853
932
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, that can be used for chaining statements
854
933
  */
855
934
  iOpenValueHelp(
@@ -861,6 +940,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
861
940
  /**
862
941
  * Removes a field as a filter field.
863
942
  *
943
+ *
864
944
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
865
945
  */
866
946
  iRemoveAdaptationFilterField(
@@ -872,12 +952,14 @@ declare module "sap/fe/test/api/FilterBarActions" {
872
952
  /**
873
953
  * Resets the search field.
874
954
  *
955
+ *
875
956
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
876
957
  */
877
958
  iResetSearchField(): object;
878
959
  /**
879
960
  * Saves a variant under the given name, or overwrites the current variant.
880
961
  *
962
+ *
881
963
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
882
964
  */
883
965
  iSaveVariant(
@@ -897,6 +979,7 @@ declare module "sap/fe/test/api/FilterBarActions" {
897
979
  /**
898
980
  * Selects the chosen variant.
899
981
  *
982
+ *
900
983
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
901
984
  */
902
985
  iSelectVariant(
@@ -910,17 +993,22 @@ declare module "sap/fe/test/api/FilterBarActions" {
910
993
 
911
994
  declare module "sap/fe/test/api/FilterBarAPI" {
912
995
  export default class FilterBarAPI {
913
- constructor();
996
+ /**
997
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
998
+ */
999
+ protected constructor();
914
1000
 
915
1001
  /**
916
1002
  * Confirms the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
917
1003
  *
1004
+ *
918
1005
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
919
1006
  */
920
1007
  iConfirmFilterAdaptation(): object;
921
1008
  /**
922
1009
  * Opens the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
923
1010
  *
1011
+ *
924
1012
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
925
1013
  */
926
1014
  iOpenFilterAdaptation(): object;
@@ -945,11 +1033,15 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
945
1033
  import EditState from "sap/fe/test/api/EditState";
946
1034
 
947
1035
  export default class FilterBarAssertions extends FilterBarAPI {
948
- constructor();
1036
+ /**
1037
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1038
+ */
1039
+ protected constructor();
949
1040
 
950
1041
  /**
951
1042
  * Checks a field in the adaptation dialog.
952
1043
  *
1044
+ *
953
1045
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
954
1046
  */
955
1047
  iCheckAdaptationFilterField(
@@ -965,6 +1057,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
965
1057
  /**
966
1058
  * Check the filter field for the editing status.
967
1059
  *
1060
+ *
968
1061
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
969
1062
  */
970
1063
  iCheckEditingStatus(
@@ -980,12 +1073,14 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
980
1073
  /**
981
1074
  * Checks whether the filter adaptation dialog is open.
982
1075
  *
1076
+ *
983
1077
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
984
1078
  */
985
1079
  iCheckFilterAdaptation(): object;
986
1080
  /**
987
1081
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
988
1082
  *
1083
+ *
989
1084
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
990
1085
  */
991
1086
  iCheckFilterField(
@@ -1009,6 +1104,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1009
1104
  /**
1010
1105
  * Checks the search button.
1011
1106
  *
1107
+ *
1012
1108
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1013
1109
  */
1014
1110
  iCheckSearch(
@@ -1021,6 +1117,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1021
1117
  * Checks the search field in the filter bar. If the `sSearchText` parameter is `undefined`, the search
1022
1118
  * text is not validated.
1023
1119
  *
1120
+ *
1024
1121
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1025
1122
  */
1026
1123
  iCheckSearchField(
@@ -1036,6 +1133,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1036
1133
  /**
1037
1134
  * Checks the filter bar.
1038
1135
  *
1136
+ *
1039
1137
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1040
1138
  */
1041
1139
  iCheckState(
@@ -1047,6 +1145,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1047
1145
  /**
1048
1146
  * Checks if the focus is on the filter field.
1049
1147
  *
1148
+ *
1050
1149
  * @returns The result of the {@link sa p.ui.test.Opa5#waitFor} function, to be used for chained statements
1051
1150
  */
1052
1151
  iSeeFocusOnFilterField(
@@ -1058,6 +1157,7 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
1058
1157
  /**
1059
1158
  * Checks if the focus is on the Go Button of the filter bar.
1060
1159
  *
1160
+ *
1061
1161
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1062
1162
  */
1063
1163
  iSeeFocusOnGoButton(): object;
@@ -1068,11 +1168,15 @@ declare module "sap/fe/test/api/FooterActionsBase" {
1068
1168
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1069
1169
 
1070
1170
  export default class FooterActionsBase {
1071
- constructor();
1171
+ /**
1172
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1173
+ */
1174
+ protected constructor();
1072
1175
 
1073
1176
  /**
1074
1177
  * Executes a footer action.
1075
1178
  *
1179
+ *
1076
1180
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1077
1181
  */
1078
1182
  iExecuteAction(
@@ -1088,29 +1192,36 @@ declare module "sap/fe/test/api/FooterActionsOP" {
1088
1192
  import FooterActionsBase from "sap/fe/test/api/FooterActionsBase";
1089
1193
 
1090
1194
  export default class FooterActionsOP extends FooterActionsBase {
1091
- constructor();
1195
+ /**
1196
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1197
+ */
1198
+ protected constructor();
1092
1199
 
1093
1200
  /**
1094
1201
  * Confirms the Cancel action when user clicks `Cancel` in draft mode.
1095
1202
  *
1203
+ *
1096
1204
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1097
1205
  */
1098
1206
  iConfirmCancel(): object;
1099
1207
  /**
1100
1208
  * Executes the Apply action in the footer bar of a sub-object page.
1101
1209
  *
1210
+ *
1102
1211
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1103
1212
  */
1104
1213
  iExecuteApply(): object;
1105
1214
  /**
1106
1215
  * Executes the Cancel action in the footer bar of the object page.
1107
1216
  *
1217
+ *
1108
1218
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1109
1219
  */
1110
1220
  iExecuteCancel(): object;
1111
1221
  /**
1112
1222
  * Executes the Save or Create action in the footer bar of the object page.
1113
1223
  *
1224
+ *
1114
1225
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1115
1226
  */
1116
1227
  iExecuteSave(): object;
@@ -1121,11 +1232,15 @@ declare module "sap/fe/test/api/FooterAssertionsBase" {
1121
1232
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1122
1233
 
1123
1234
  export default class FooterAssertionsBase {
1124
- constructor();
1235
+ /**
1236
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1237
+ */
1238
+ protected constructor();
1125
1239
 
1126
1240
  /**
1127
1241
  * Checks the state of an action in the footer bar.
1128
1242
  *
1243
+ *
1129
1244
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1130
1245
  */
1131
1246
  iCheckAction(
@@ -1141,6 +1256,7 @@ declare module "sap/fe/test/api/FooterAssertionsBase" {
1141
1256
  /**
1142
1257
  * Checks the state of the footer bar.
1143
1258
  *
1259
+ *
1144
1260
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1145
1261
  */
1146
1262
  iCheckState(
@@ -1156,11 +1272,15 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1156
1272
  import FooterAssertionsBase from "sap/fe/test/api/FooterAssertionsBase";
1157
1273
 
1158
1274
  export default class FooterAssertionsOP extends FooterAssertionsBase {
1159
- constructor();
1275
+ /**
1276
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1277
+ */
1278
+ protected constructor();
1160
1279
 
1161
1280
  /**
1162
1281
  * Checks the state of the Apply action in the footer bar.
1163
1282
  *
1283
+ *
1164
1284
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1165
1285
  */
1166
1286
  iCheckApply(
@@ -1172,6 +1292,7 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1172
1292
  /**
1173
1293
  * Checks the state of the Cancel action in the footer bar.
1174
1294
  *
1295
+ *
1175
1296
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1176
1297
  */
1177
1298
  iCheckCancel(
@@ -1183,18 +1304,21 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
1183
1304
  /**
1184
1305
  * Checks for draft state 'Clear' in the footer bar.
1185
1306
  *
1307
+ *
1186
1308
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1187
1309
  */
1188
1310
  iCheckDraftStateClear(): object;
1189
1311
  /**
1190
1312
  * Checks for draft state 'Saved' in the footer bar.
1191
1313
  *
1314
+ *
1192
1315
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1193
1316
  */
1194
1317
  iCheckDraftStateSaved(): object;
1195
1318
  /**
1196
1319
  * Checks the state of the Save or Create action in the footer bar.
1197
1320
  *
1321
+ *
1198
1322
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1199
1323
  */
1200
1324
  iCheckSave(
@@ -1212,11 +1336,15 @@ declare module "sap/fe/test/api/FormActions" {
1212
1336
  import { FieldIdentifier, ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1213
1337
 
1214
1338
  export default class FormActions extends FormAPI {
1215
- constructor();
1339
+ /**
1340
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1341
+ */
1342
+ protected constructor();
1216
1343
 
1217
1344
  /**
1218
1345
  * Changes the value of a field within a form.
1219
1346
  *
1347
+ *
1220
1348
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1221
1349
  */
1222
1350
  iChangeField(
@@ -1232,6 +1360,7 @@ declare module "sap/fe/test/api/FormActions" {
1232
1360
  /**
1233
1361
  * Toggles the value of a checkbox within a form.
1234
1362
  *
1363
+ *
1235
1364
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1236
1365
  */
1237
1366
  iClickCheckBox(
@@ -1243,6 +1372,7 @@ declare module "sap/fe/test/api/FormActions" {
1243
1372
  /**
1244
1373
  * Clicks a link within a form.
1245
1374
  *
1375
+ *
1246
1376
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1247
1377
  */
1248
1378
  iClickLink(
@@ -1254,6 +1384,7 @@ declare module "sap/fe/test/api/FormActions" {
1254
1384
  /**
1255
1385
  * Executes an action assigned to a form in a subsection.
1256
1386
  *
1387
+ *
1257
1388
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1258
1389
  */
1259
1390
  iExecuteAction(
@@ -1265,18 +1396,21 @@ declare module "sap/fe/test/api/FormActions" {
1265
1396
  /**
1266
1397
  * Executes the Show Less action of a form in a subsection.
1267
1398
  *
1399
+ *
1268
1400
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1269
1401
  */
1270
1402
  iExecuteShowLess(): object;
1271
1403
  /**
1272
1404
  * Executes the Show More action of a form in a subsection.
1273
1405
  *
1406
+ *
1274
1407
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1275
1408
  */
1276
1409
  iExecuteShowMore(): object;
1277
1410
  /**
1278
1411
  * Opens the value help of the given field.
1279
1412
  *
1413
+ *
1280
1414
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
1281
1415
  */
1282
1416
  iOpenValueHelp(
@@ -1290,7 +1424,10 @@ declare module "sap/fe/test/api/FormActions" {
1290
1424
 
1291
1425
  declare module "sap/fe/test/api/FormAPI" {
1292
1426
  export default class FormAPI {
1293
- constructor();
1427
+ /**
1428
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1429
+ */
1430
+ protected constructor();
1294
1431
  }
1295
1432
  /**
1296
1433
  * A form identifier
@@ -1317,11 +1454,15 @@ declare module "sap/fe/test/api/FormAssertions" {
1317
1454
  import { ActionIdentifier, FieldIdentifier } from "sap/fe/test/api/BaseAPI";
1318
1455
 
1319
1456
  export default class FormAssertions extends FormAPI {
1320
- constructor();
1457
+ /**
1458
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1459
+ */
1460
+ protected constructor();
1321
1461
 
1322
1462
  /**
1323
1463
  * Checks the state of an action in a subsection.
1324
1464
  *
1465
+ *
1325
1466
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1326
1467
  */
1327
1468
  iCheckAction(
@@ -1337,6 +1478,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1337
1478
  /**
1338
1479
  * Checks the content and state of a field within a form.
1339
1480
  *
1481
+ *
1340
1482
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1341
1483
  */
1342
1484
  iCheckField(
@@ -1363,6 +1505,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1363
1505
  /**
1364
1506
  * Checks the field is a link with the given text and state.
1365
1507
  *
1508
+ *
1366
1509
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1367
1510
  */
1368
1511
  iCheckLink(
@@ -1382,6 +1525,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1382
1525
  /**
1383
1526
  * Checks the Show Less action of a form in a subsection.
1384
1527
  *
1528
+ *
1385
1529
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1386
1530
  */
1387
1531
  iCheckShowLess(
@@ -1393,6 +1537,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1393
1537
  /**
1394
1538
  * Checks the Show More action of a form in a subsection.
1395
1539
  *
1540
+ *
1396
1541
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1397
1542
  */
1398
1543
  iCheckShowMore(
@@ -1404,6 +1549,7 @@ declare module "sap/fe/test/api/FormAssertions" {
1404
1549
  /**
1405
1550
  * Checks the state of the form.
1406
1551
  *
1552
+ *
1407
1553
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1408
1554
  */
1409
1555
  iCheckState(
@@ -1419,11 +1565,15 @@ declare module "sap/fe/test/api/HeaderActions" {
1419
1565
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1420
1566
 
1421
1567
  export default class HeaderActions {
1422
- constructor();
1568
+ /**
1569
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1570
+ */
1571
+ protected constructor();
1423
1572
 
1424
1573
  /**
1425
1574
  * Executes an action in the header toolbar of an object page.
1426
1575
  *
1576
+ *
1427
1577
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1428
1578
  */
1429
1579
  iExecuteAction(
@@ -1435,24 +1585,28 @@ declare module "sap/fe/test/api/HeaderActions" {
1435
1585
  /**
1436
1586
  * Executes the Delete action in the header toolbar of an object page.
1437
1587
  *
1588
+ *
1438
1589
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1439
1590
  */
1440
1591
  iExecuteDelete(): object;
1441
1592
  /**
1442
1593
  * Executes the Draft/Saved Version action in the header toolbar of an object page.
1443
1594
  *
1595
+ *
1444
1596
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1445
1597
  */
1446
1598
  iExecuteDraftAndSavedVersionSwitch(): object;
1447
1599
  /**
1448
1600
  * Executes the Edit action in the header toolbar of an object page.
1449
1601
  *
1602
+ *
1450
1603
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1451
1604
  */
1452
1605
  iExecuteEdit(): object;
1453
1606
  /**
1454
1607
  * Executes an action in the drop-down menu that is currently open.
1455
1608
  *
1609
+ *
1456
1610
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1457
1611
  */
1458
1612
  iExecuteMenuAction(
@@ -1464,24 +1618,28 @@ declare module "sap/fe/test/api/HeaderActions" {
1464
1618
  /**
1465
1619
  * Navigates to the next sub-object page.
1466
1620
  *
1621
+ *
1467
1622
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1468
1623
  */
1469
1624
  iExecutePaginatorDown(): object;
1470
1625
  /**
1471
1626
  * Navigates to the previous sub-object page.
1472
1627
  *
1628
+ *
1473
1629
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1474
1630
  */
1475
1631
  iExecutePaginatorUp(): object;
1476
1632
  /**
1477
1633
  * Executes the Related Apps action in the header toolbar of an object page.
1478
1634
  *
1635
+ *
1479
1636
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1480
1637
  */
1481
1638
  iExecuteRelatedApps(): object;
1482
1639
  /**
1483
1640
  * Executes an action in the selection list that is currently open.
1484
1641
  *
1642
+ *
1485
1643
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1486
1644
  */
1487
1645
  iExecuteSelectListAction(
@@ -1497,11 +1655,15 @@ declare module "sap/fe/test/api/HeaderActionsLR" {
1497
1655
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1498
1656
 
1499
1657
  export default class HeaderActionsLR {
1500
- constructor();
1658
+ /**
1659
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1660
+ */
1661
+ protected constructor();
1501
1662
 
1502
1663
  /**
1503
1664
  * Executes an action in the header toolbar of a list report.
1504
1665
  *
1666
+ *
1505
1667
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1506
1668
  */
1507
1669
  iExecuteAction(
@@ -1519,11 +1681,15 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1519
1681
  import { HeaderFacetIdentifier } from "sap/fe/test/api/HeaderAPI";
1520
1682
 
1521
1683
  export default class HeaderAssertions {
1522
- constructor();
1684
+ /**
1685
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1686
+ */
1687
+ protected constructor();
1523
1688
 
1524
1689
  /**
1525
1690
  * Checks an action in the header toolbar.
1526
1691
  *
1692
+ *
1527
1693
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1528
1694
  */
1529
1695
  iCheckAction(
@@ -1539,6 +1705,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1539
1705
  /**
1540
1706
  * Checks the `Delete` action in the header toolbar.
1541
1707
  *
1708
+ *
1542
1709
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1543
1710
  */
1544
1711
  iCheckDelete(
@@ -1550,6 +1717,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1550
1717
  /**
1551
1718
  * Checks the `Edit` action in the header toolbar.
1552
1719
  *
1720
+ *
1553
1721
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1554
1722
  */
1555
1723
  iCheckEdit(
@@ -1561,6 +1729,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1561
1729
  /**
1562
1730
  * Checks a field within a field group in the object page header.
1563
1731
  *
1732
+ *
1564
1733
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1565
1734
  */
1566
1735
  iCheckFieldInFieldGroup(
@@ -1588,6 +1757,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1588
1757
  /**
1589
1758
  * Checks the custom facet in the object page header.
1590
1759
  *
1760
+ *
1591
1761
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1592
1762
  */
1593
1763
  iCheckHeaderFacet(
@@ -1603,6 +1773,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1603
1773
  /**
1604
1774
  * Checks an action in the popover that is currently open.
1605
1775
  *
1776
+ *
1606
1777
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1607
1778
  */
1608
1779
  iCheckMenuAction(
@@ -1614,6 +1785,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1614
1785
  /**
1615
1786
  * Checks the paginator down button.
1616
1787
  *
1788
+ *
1617
1789
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1618
1790
  */
1619
1791
  iCheckPaginatorDown(
@@ -1625,6 +1797,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1625
1797
  /**
1626
1798
  * Checks the paginator up button.
1627
1799
  *
1800
+ *
1628
1801
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1629
1802
  */
1630
1803
  iCheckPaginatorUp(
@@ -1636,6 +1809,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1636
1809
  /**
1637
1810
  * Checks the `Related Apps` action in the header toolbar.
1638
1811
  *
1812
+ *
1639
1813
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1640
1814
  */
1641
1815
  iCheckRelatedApps(
@@ -1647,6 +1821,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1647
1821
  /**
1648
1822
  * Checks the `Save as Tile` action.
1649
1823
  *
1824
+ *
1650
1825
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1651
1826
  */
1652
1827
  iCheckSaveAsTile(
@@ -1658,6 +1833,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1658
1833
  /**
1659
1834
  * Checks `Send Email` action.
1660
1835
  *
1836
+ *
1661
1837
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1662
1838
  */
1663
1839
  iCheckSendEmail(
@@ -1671,6 +1847,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
1671
1847
  *
1672
1848
  * If either title or description is `undefined`, it will not be checked.
1673
1849
  *
1850
+ *
1674
1851
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1675
1852
  */
1676
1853
  iCheckTitle(
@@ -1690,11 +1867,15 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1690
1867
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1691
1868
 
1692
1869
  export default class HeaderAssertionsLR {
1693
- constructor();
1870
+ /**
1871
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1872
+ */
1873
+ protected constructor();
1694
1874
 
1695
1875
  /**
1696
1876
  * Checks an action of the header toolbar.
1697
1877
  *
1878
+ *
1698
1879
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1699
1880
  */
1700
1881
  iCheckAction(
@@ -1710,6 +1891,7 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1710
1891
  /**
1711
1892
  * Checks the `Save as Tile` action.
1712
1893
  *
1894
+ *
1713
1895
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1714
1896
  */
1715
1897
  iCheckSaveAsTile(
@@ -1721,6 +1903,7 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
1721
1903
  /**
1722
1904
  * Checks the `Send Email` action.
1723
1905
  *
1906
+ *
1724
1907
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1725
1908
  */
1726
1909
  iCheckSendEmail(
@@ -1763,11 +1946,15 @@ declare module "sap/fe/test/api/TableActions" {
1763
1946
  import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
1764
1947
 
1765
1948
  export default class TableActions extends TableAPI {
1766
- constructor();
1949
+ /**
1950
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1951
+ */
1952
+ protected constructor();
1767
1953
 
1768
1954
  /**
1769
1955
  * Adds a field as a column to the table.
1770
1956
  *
1957
+ *
1771
1958
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1772
1959
  */
1773
1960
  iAddAdaptationColumn(
@@ -1779,6 +1966,7 @@ declare module "sap/fe/test/api/TableActions" {
1779
1966
  /**
1780
1967
  * Aggregates the table entries by the specified column.
1781
1968
  *
1969
+ *
1782
1970
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1783
1971
  */
1784
1972
  iAggregateByColumn(
@@ -1795,6 +1983,7 @@ declare module "sap/fe/test/api/TableActions" {
1795
1983
  /**
1796
1984
  * Adds a filter condition to the filter field.
1797
1985
  *
1986
+ *
1798
1987
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1799
1988
  */
1800
1989
  iChangeFilterField(
@@ -1817,6 +2006,7 @@ declare module "sap/fe/test/api/TableActions" {
1817
2006
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1818
2007
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1819
2008
  *
2009
+ *
1820
2010
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1821
2011
  */
1822
2012
  iChangeRow(
@@ -1847,6 +2037,7 @@ declare module "sap/fe/test/api/TableActions" {
1847
2037
  * If only one parameter is provided, it must be the `mTargetValues` and `mRowValues` is considered undefined.
1848
2038
  * If `vRowValues` are not defined, then the targetValues are inserted in the creationRow.
1849
2039
  *
2040
+ *
1850
2041
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1851
2042
  */
1852
2043
  iChangeRow(
@@ -1863,6 +2054,7 @@ declare module "sap/fe/test/api/TableActions" {
1863
2054
  /**
1864
2055
  * Changes the search field.
1865
2056
  *
2057
+ *
1866
2058
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1867
2059
  */
1868
2060
  iChangeSearchField(
@@ -1874,6 +2066,7 @@ declare module "sap/fe/test/api/TableActions" {
1874
2066
  /**
1875
2067
  * Adds a field to the sorting of the table via the sort dialog.
1876
2068
  *
2069
+ *
1877
2070
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1878
2071
  */
1879
2072
  iChangeSortOrder(
@@ -1889,6 +2082,7 @@ declare module "sap/fe/test/api/TableActions" {
1889
2082
  /**
1890
2083
  * Collapses a row corresponding to a visual group.
1891
2084
  *
2085
+ *
1892
2086
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1893
2087
  */
1894
2088
  iCollapseGroupRow(
@@ -1904,6 +2098,7 @@ declare module "sap/fe/test/api/TableActions" {
1904
2098
  /**
1905
2099
  * Executes an action on the table.
1906
2100
  *
2101
+ *
1907
2102
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1908
2103
  */
1909
2104
  iExecuteAction(
@@ -1915,24 +2110,28 @@ declare module "sap/fe/test/api/TableActions" {
1915
2110
  /**
1916
2111
  * Executes the `Create` action on the table.
1917
2112
  *
2113
+ *
1918
2114
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1919
2115
  */
1920
2116
  iExecuteCreate(): object;
1921
2117
  /**
1922
2118
  * Executes the `Delete` action on the table.
1923
2119
  *
2120
+ *
1924
2121
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1925
2122
  */
1926
2123
  iExecuteDelete(): object;
1927
2124
  /**
1928
2125
  * Executes the `Fullscreen` action on the table.
1929
2126
  *
2127
+ *
1930
2128
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1931
2129
  */
1932
2130
  iExecuteFullScreen(): object;
1933
2131
  /**
1934
2132
  * Executes an action that is available in a certain column within a table row.
1935
2133
  *
2134
+ *
1936
2135
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1937
2136
  */
1938
2137
  iExecuteInlineAction(
@@ -1955,6 +2154,7 @@ declare module "sap/fe/test/api/TableActions" {
1955
2154
  /**
1956
2155
  * Executes an action that is available in a certain column within a table row.
1957
2156
  *
2157
+ *
1958
2158
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1959
2159
  */
1960
2160
  iExecuteInlineAction(
@@ -1966,6 +2166,7 @@ declare module "sap/fe/test/api/TableActions" {
1966
2166
  /**
1967
2167
  * Executes the action to create a row in the table.
1968
2168
  *
2169
+ *
1969
2170
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1970
2171
  */
1971
2172
  iExecuteInlineCreate(): object;
@@ -1974,6 +2175,7 @@ declare module "sap/fe/test/api/TableActions" {
1974
2175
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
1975
2176
  * is executed on table cell level.
1976
2177
  *
2178
+ *
1977
2179
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
1978
2180
  */
1979
2181
  iExecuteKeyboardShortcut(
@@ -2002,6 +2204,7 @@ declare module "sap/fe/test/api/TableActions" {
2002
2204
  * is executed on the table directly. If additionally `vRowValues` and `vColumn` are defined, the shortcut
2003
2205
  * is executed on table cell level.
2004
2206
  *
2207
+ *
2005
2208
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2006
2209
  */
2007
2210
  iExecuteKeyboardShortcut(
@@ -2017,6 +2220,7 @@ declare module "sap/fe/test/api/TableActions" {
2017
2220
  /**
2018
2221
  * Executes an action form the drop-down menu that is currently open.
2019
2222
  *
2223
+ *
2020
2224
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2021
2225
  */
2022
2226
  iExecuteMenuAction(
@@ -2028,6 +2232,7 @@ declare module "sap/fe/test/api/TableActions" {
2028
2232
  /**
2029
2233
  * Executes the `Show/Hide details` action on the table.
2030
2234
  *
2235
+ *
2031
2236
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2032
2237
  */
2033
2238
  iExecuteShowHideDetails(
@@ -2040,6 +2245,7 @@ declare module "sap/fe/test/api/TableActions" {
2040
2245
  /**
2041
2246
  * Expands a row corresponding to a visual group.
2042
2247
  *
2248
+ *
2043
2249
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2044
2250
  */
2045
2251
  iExpandGroupRow(
@@ -2055,6 +2261,7 @@ declare module "sap/fe/test/api/TableActions" {
2055
2261
  /**
2056
2262
  * Groups the table entries by the specified column.
2057
2263
  *
2264
+ *
2058
2265
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2059
2266
  */
2060
2267
  iGroupByColumn(
@@ -2071,6 +2278,7 @@ declare module "sap/fe/test/api/TableActions" {
2071
2278
  /**
2072
2279
  * Pastes data into the table.
2073
2280
  *
2281
+ *
2074
2282
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2075
2283
  */
2076
2284
  iPasteData(
@@ -2082,6 +2290,7 @@ declare module "sap/fe/test/api/TableActions" {
2082
2290
  /**
2083
2291
  * Presses the control in the table cell.
2084
2292
  *
2293
+ *
2085
2294
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2086
2295
  */
2087
2296
  iPressCell(
@@ -2104,6 +2313,7 @@ declare module "sap/fe/test/api/TableActions" {
2104
2313
  /**
2105
2314
  * Presses the control in the table cell.
2106
2315
  *
2316
+ *
2107
2317
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2108
2318
  */
2109
2319
  iPressCell(
@@ -2115,6 +2325,7 @@ declare module "sap/fe/test/api/TableActions" {
2115
2325
  /**
2116
2326
  * Clicks the specified row.
2117
2327
  *
2328
+ *
2118
2329
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2119
2330
  */
2120
2331
  iPressRow(
@@ -2133,6 +2344,7 @@ declare module "sap/fe/test/api/TableActions" {
2133
2344
  /**
2134
2345
  * Removes a field as a column from the table.
2135
2346
  *
2347
+ *
2136
2348
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2137
2349
  */
2138
2350
  iRemoveAdaptationColumn(
@@ -2144,6 +2356,7 @@ declare module "sap/fe/test/api/TableActions" {
2144
2356
  /**
2145
2357
  * Removes the variant of the given name.
2146
2358
  *
2359
+ *
2147
2360
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2148
2361
  */
2149
2362
  iRemoveVariant(
@@ -2155,12 +2368,14 @@ declare module "sap/fe/test/api/TableActions" {
2155
2368
  /**
2156
2369
  * Resets the search field.
2157
2370
  *
2371
+ *
2158
2372
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2159
2373
  */
2160
2374
  iResetSearchField(): object;
2161
2375
  /**
2162
2376
  * Saves a variant under the given name, or overwrites the current one.
2163
2377
  *
2378
+ *
2164
2379
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2165
2380
  */
2166
2381
  iSaveVariant(
@@ -2172,12 +2387,14 @@ declare module "sap/fe/test/api/TableActions" {
2172
2387
  /**
2173
2388
  * Selects all rows in a table.
2174
2389
  *
2390
+ *
2175
2391
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2176
2392
  */
2177
2393
  iSelectAllRows(): object;
2178
2394
  /**
2179
2395
  * Selects a quick-filter item on the table.
2180
2396
  *
2397
+ *
2181
2398
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2182
2399
  */
2183
2400
  iSelectQuickFilterItem(
@@ -2196,6 +2413,7 @@ declare module "sap/fe/test/api/TableActions" {
2196
2413
  /**
2197
2414
  * Selects the specified rows.
2198
2415
  *
2416
+ *
2199
2417
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2200
2418
  */
2201
2419
  iSelectRows(
@@ -2218,6 +2436,7 @@ declare module "sap/fe/test/api/TableActions" {
2218
2436
  /**
2219
2437
  * Selects the chosen variant.
2220
2438
  *
2439
+ *
2221
2440
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2222
2441
  */
2223
2442
  iSelectVariant(
@@ -2229,6 +2448,7 @@ declare module "sap/fe/test/api/TableActions" {
2229
2448
  /**
2230
2449
  * Sets the variant as the default.
2231
2450
  *
2451
+ *
2232
2452
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2233
2453
  */
2234
2454
  iSetDefaultVariant(
@@ -2241,6 +2461,7 @@ declare module "sap/fe/test/api/TableActions" {
2241
2461
  /**
2242
2462
  * Sorts the table entries by the specified column.
2243
2463
  *
2464
+ *
2244
2465
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2245
2466
  */
2246
2467
  iSortByColumn(
@@ -2277,11 +2498,15 @@ declare module "sap/fe/test/api/TableAssertions" {
2277
2498
  import { SortOrder } from "sap/ui/core/library";
2278
2499
 
2279
2500
  export default class TableAssertions extends TableAPI {
2280
- constructor();
2501
+ /**
2502
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2503
+ */
2504
+ protected constructor();
2281
2505
 
2282
2506
  /**
2283
2507
  * Checks the state of a table action.
2284
2508
  *
2509
+ *
2285
2510
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2286
2511
  */
2287
2512
  iCheckAction(
@@ -2297,6 +2522,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2297
2522
  /**
2298
2523
  * Checks a field in the adaptation dialog.
2299
2524
  *
2525
+ *
2300
2526
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2301
2527
  */
2302
2528
  iCheckAdaptationColumn(
@@ -2312,6 +2538,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2312
2538
  /**
2313
2539
  * Checks the state of the cells of a table.
2314
2540
  *
2541
+ *
2315
2542
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2316
2543
  */
2317
2544
  iCheckCells(
@@ -2342,6 +2569,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2342
2569
  /**
2343
2570
  * Checks the state of the cells of a table.
2344
2571
  *
2572
+ *
2345
2573
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2346
2574
  */
2347
2575
  iCheckCells(
@@ -2361,24 +2589,28 @@ declare module "sap/fe/test/api/TableAssertions" {
2361
2589
  /**
2362
2590
  * Checks whether the adaptation button is available for the table.
2363
2591
  *
2592
+ *
2364
2593
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2365
2594
  */
2366
2595
  iCheckColumnAdaptation(): object;
2367
2596
  /**
2368
2597
  * Checks whether the column adaptation dialog is open.
2369
2598
  *
2599
+ *
2370
2600
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2371
2601
  */
2372
2602
  iCheckColumnAdaptationDialog(): object;
2373
2603
  /**
2374
2604
  * Checks whether the filter button is available for the table.
2375
2605
  *
2606
+ *
2376
2607
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2377
2608
  */
2378
2609
  iCheckColumnFiltering(): object;
2379
2610
  /**
2380
2611
  * Checks the state of the columns of the table.
2381
2612
  *
2613
+ *
2382
2614
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2383
2615
  */
2384
2616
  iCheckColumns(
@@ -2402,12 +2634,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2402
2634
  /**
2403
2635
  * Checks whether the sort button is available for the table.
2404
2636
  *
2637
+ *
2405
2638
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2406
2639
  */
2407
2640
  iCheckColumnSorting(): object;
2408
2641
  /**
2409
2642
  * Checks the `Create` action of the table.
2410
2643
  *
2644
+ *
2411
2645
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2412
2646
  */
2413
2647
  iCheckCreate(
@@ -2419,6 +2653,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2419
2653
  /**
2420
2654
  * Checks the state of the CreationRow button in the table.
2421
2655
  *
2656
+ *
2422
2657
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2423
2658
  */
2424
2659
  iCheckCreationRow(
@@ -2440,6 +2675,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2440
2675
  /**
2441
2676
  * Checks the `Delete` action of the table.
2442
2677
  *
2678
+ *
2443
2679
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2444
2680
  */
2445
2681
  iCheckDelete(
@@ -2451,12 +2687,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2451
2687
  /**
2452
2688
  * Checks whether the export button is available for the table.
2453
2689
  *
2690
+ *
2454
2691
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2455
2692
  */
2456
2693
  iCheckExport(): object;
2457
2694
  /**
2458
2695
  * Checks, if a filter field is available in the filter dialog.
2459
2696
  *
2697
+ *
2460
2698
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2461
2699
  */
2462
2700
  iCheckFilterField(
@@ -2472,6 +2710,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2472
2710
  /**
2473
2711
  * Checks the `Fullscreen` action of the table.
2474
2712
  *
2713
+ *
2475
2714
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2476
2715
  */
2477
2716
  iCheckFullScreen(
@@ -2483,6 +2722,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2483
2722
  /**
2484
2723
  * Checks an action in the drop-down menu that is currently open.
2485
2724
  *
2725
+ *
2486
2726
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2487
2727
  */
2488
2728
  iCheckMenuAction(
@@ -2494,6 +2734,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2494
2734
  /**
2495
2735
  * Checks a messageStrip on a table.
2496
2736
  *
2737
+ *
2497
2738
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2498
2739
  */
2499
2740
  iCheckMessageStrip(
@@ -2505,12 +2746,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2505
2746
  /**
2506
2747
  * Checks whether the paste button is available for the table.
2507
2748
  *
2749
+ *
2508
2750
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2509
2751
  */
2510
2752
  iCheckPaste(): object;
2511
2753
  /**
2512
2754
  * Checks the quick filter action of the table.
2513
2755
  *
2756
+ *
2514
2757
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2515
2758
  */
2516
2759
  iCheckQuickFilter(
@@ -2522,6 +2765,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2522
2765
  /**
2523
2766
  * Checks the number of items in the quick-filter menu.
2524
2767
  *
2768
+ *
2525
2769
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2526
2770
  */
2527
2771
  iCheckQuickFilterItems(
@@ -2536,6 +2780,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2536
2780
  * `mRowValues` (if set) or in total. If `iNumberOfRows` is omitted, it checks for at least one matching
2537
2781
  * row. If `mState` is provided, the row must be in the given state.
2538
2782
  *
2783
+ *
2539
2784
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2540
2785
  */
2541
2786
  iCheckRows(
@@ -2567,6 +2812,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2567
2812
  * Checks the search field in the table toolbar. If the `sSearchText` parameter is `undefined`, the search
2568
2813
  * text is not validated.
2569
2814
  *
2815
+ *
2570
2816
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function that can be used for chaining statements
2571
2817
  */
2572
2818
  iCheckSearchField(
@@ -2582,6 +2828,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2582
2828
  /**
2583
2829
  * Checks a field in the sorting dialog.
2584
2830
  *
2831
+ *
2585
2832
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2586
2833
  */
2587
2834
  iCheckSortOrder(
@@ -2601,6 +2848,7 @@ declare module "sap/fe/test/api/TableAssertions" {
2601
2848
  /**
2602
2849
  * Checks the state of the table.
2603
2850
  *
2851
+ *
2604
2852
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2605
2853
  */
2606
2854
  iCheckState(
@@ -2612,12 +2860,14 @@ declare module "sap/fe/test/api/TableAssertions" {
2612
2860
  /**
2613
2861
  * Checks if the focus is on a table.
2614
2862
  *
2863
+ *
2615
2864
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2616
2865
  */
2617
2866
  iSeeFocusOnHeader(): object;
2618
2867
  /**
2619
2868
  * Checks if the focus is on a table row.
2620
2869
  *
2870
+ *
2621
2871
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2622
2872
  */
2623
2873
  iSeeFocusOnRow(
@@ -2677,6 +2927,7 @@ declare module "sap/fe/test/JourneyRunner" {
2677
2927
  *
2678
2928
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2679
2929
  *
2930
+ *
2680
2931
  * @returns Created class / constructor function
2681
2932
  */
2682
2933
  static extend<T extends Record<string, unknown>>(
@@ -2697,12 +2948,14 @@ declare module "sap/fe/test/JourneyRunner" {
2697
2948
  /**
2698
2949
  * Gets the global journey runner instance.
2699
2950
  *
2951
+ *
2700
2952
  * @returns The global default {@link sap.fe.test.JourneyRunner} instance
2701
2953
  */
2702
2954
  static getDefaultRunner(): object;
2703
2955
  /**
2704
2956
  * Returns a metadata object for class sap.fe.test.JourneyRunner.
2705
2957
  *
2958
+ *
2706
2959
  * @returns Metadata object describing this class
2707
2960
  */
2708
2961
  static getMetadata(): Metadata;
@@ -2723,8 +2976,6 @@ declare module "sap/fe/test/JourneyRunner" {
2723
2976
  oDefaultRunner: JourneyRunner
2724
2977
  ): void;
2725
2978
  /**
2726
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2727
- *
2728
2979
  * Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2729
2980
  * `actions` setting.
2730
2981
  *
@@ -2733,12 +2984,12 @@ declare module "sap/fe/test/JourneyRunner" {
2733
2984
  *
2734
2985
  * By default, an instance of {@link sap.fe.test.BaseActions} will be returned.
2735
2986
  *
2987
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2988
+ *
2736
2989
  * @returns An Opa instance for the base actions
2737
2990
  */
2738
2991
  getBaseActions(): Opa;
2739
2992
  /**
2740
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2741
- *
2742
2993
  * Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2743
2994
  * `arrangements` setting.
2744
2995
  *
@@ -2747,6 +2998,8 @@ declare module "sap/fe/test/JourneyRunner" {
2747
2998
  *
2748
2999
  * By default, an instance of {@link sap.fe.test.BaseArrangements} will be returned.
2749
3000
  *
3001
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3002
+ *
2750
3003
  * @returns An Opa instance for the base arrangements
2751
3004
  */
2752
3005
  getBaseArrangements(
@@ -2756,8 +3009,6 @@ declare module "sap/fe/test/JourneyRunner" {
2756
3009
  mSettings: object
2757
3010
  ): Opa;
2758
3011
  /**
2759
- * @ui5-protected Do not call from applications (only from related classes in the framework)
2760
- *
2761
3012
  * Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
2762
3013
  * `assertions` setting.
2763
3014
  *
@@ -2766,6 +3017,8 @@ declare module "sap/fe/test/JourneyRunner" {
2766
3017
  *
2767
3018
  * By default, an instance of {@link sap.fe.test.BaseAssertions} will be returned.
2768
3019
  *
3020
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3021
+ *
2769
3022
  * @returns An Opa instance for the base assertions
2770
3023
  */
2771
3024
  getBaseAssertions(): Opa;
@@ -2774,6 +3027,7 @@ declare module "sap/fe/test/JourneyRunner" {
2774
3027
  *
2775
3028
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
2776
3029
  *
3030
+ *
2777
3031
  * @returns A `Promise` that is resolved after all tests have been executed
2778
3032
  */
2779
3033
  run(
@@ -2816,6 +3070,7 @@ declare module "sap/fe/test/JourneyRunner" {
2816
3070
  *
2817
3071
  * The settings provided as first parameter are merged into the base settings of the JourneyRunner instance.
2818
3072
  *
3073
+ *
2819
3074
  * @returns A `Promise` that is resolved after all tests have been executed
2820
3075
  */
2821
3076
  run(
@@ -2909,6 +3164,7 @@ declare module "sap/fe/test/ListReport" {
2909
3164
  /**
2910
3165
  * Collapses or expands the page header.
2911
3166
  *
3167
+ *
2912
3168
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2913
3169
  */
2914
3170
  iCollapseExpandPageHeader(
@@ -2920,6 +3176,7 @@ declare module "sap/fe/test/ListReport" {
2920
3176
  /**
2921
3177
  * Navigates to or focuses on the defined view of a Multiple Views List Report table.
2922
3178
  *
3179
+ *
2923
3180
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2924
3181
  */
2925
3182
  iGoToView(
@@ -2940,18 +3197,21 @@ declare module "sap/fe/test/ListReport" {
2940
3197
  /**
2941
3198
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
2942
3199
  *
3200
+ *
2943
3201
  * @returns The available filter bar actions
2944
3202
  */
2945
3203
  onFilterBar(): FilterBarActions;
2946
3204
  /**
2947
3205
  * Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
2948
3206
  *
3207
+ *
2949
3208
  * @returns The available header actions
2950
3209
  */
2951
3210
  onHeader(): HeaderActionsLR;
2952
3211
  /**
2953
3212
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
2954
3213
  *
3214
+ *
2955
3215
  * @returns The available table actions
2956
3216
  */
2957
3217
  onTable(
@@ -2970,6 +3230,7 @@ declare module "sap/fe/test/ListReport" {
2970
3230
  /**
2971
3231
  * Checks the view of a Multiple View List Report table.
2972
3232
  *
3233
+ *
2973
3234
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
2974
3235
  */
2975
3236
  iCheckView(
@@ -3000,18 +3261,21 @@ declare module "sap/fe/test/ListReport" {
3000
3261
  /**
3001
3262
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
3002
3263
  *
3264
+ *
3003
3265
  * @returns The available filter bar assertions
3004
3266
  */
3005
3267
  onFilterBar(): FilterBarAssertions;
3006
3268
  /**
3007
3269
  * Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
3008
3270
  *
3271
+ *
3009
3272
  * @returns The available header assertions
3010
3273
  */
3011
3274
  onHeader(): HeaderAssertionsLR;
3012
3275
  /**
3013
3276
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
3014
3277
  *
3278
+ *
3015
3279
  * @returns The available table assertions
3016
3280
  */
3017
3281
  onTable(
@@ -3112,6 +3376,7 @@ declare module "sap/fe/test/ObjectPage" {
3112
3376
  /**
3113
3377
  * Collapses or expands the page header.
3114
3378
  *
3379
+ *
3115
3380
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3116
3381
  */
3117
3382
  iCollapseExpandPageHeader(
@@ -3123,6 +3388,7 @@ declare module "sap/fe/test/ObjectPage" {
3123
3388
  /**
3124
3389
  * Navigates to or focuses on the defined section.
3125
3390
  *
3391
+ *
3126
3392
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3127
3393
  */
3128
3394
  iGoToSection(
@@ -3149,6 +3415,7 @@ declare module "sap/fe/test/ObjectPage" {
3149
3415
  /**
3150
3416
  * Returns a {@link sap.fe.test.api.FilterBarActions} instance.
3151
3417
  *
3418
+ *
3152
3419
  * @returns The available filter bar actions
3153
3420
  */
3154
3421
  onFilterBar(
@@ -3162,12 +3429,14 @@ declare module "sap/fe/test/ObjectPage" {
3162
3429
  /**
3163
3430
  * Returns a {@link sap.fe.test.api.FooterActionsOP} instance.
3164
3431
  *
3432
+ *
3165
3433
  * @returns The available footer actions
3166
3434
  */
3167
3435
  onFooter(): FooterActionsOP;
3168
3436
  /**
3169
3437
  * Returns a {@link sap.fe.test.api.FormActions} instance.
3170
3438
  *
3439
+ *
3171
3440
  * @returns The available form actions
3172
3441
  */
3173
3442
  onForm(
@@ -3179,12 +3448,14 @@ declare module "sap/fe/test/ObjectPage" {
3179
3448
  /**
3180
3449
  * Returns a {@link sap.fe.test.api.HeaderActions} instance.
3181
3450
  *
3451
+ *
3182
3452
  * @returns The available header actions
3183
3453
  */
3184
3454
  onHeader(): HeaderActions;
3185
3455
  /**
3186
3456
  * Returns a {@link sap.fe.test.api.TableActions} instance for the specified table.
3187
3457
  *
3458
+ *
3188
3459
  * @returns The available table actions
3189
3460
  */
3190
3461
  onTable(
@@ -3203,6 +3474,7 @@ declare module "sap/fe/test/ObjectPage" {
3203
3474
  /**
3204
3475
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
3205
3476
  *
3477
+ *
3206
3478
  * @returns The available filter bar assertions
3207
3479
  */
3208
3480
  onFilterBar(
@@ -3216,12 +3488,14 @@ declare module "sap/fe/test/ObjectPage" {
3216
3488
  /**
3217
3489
  * Returns a {@link sap.fe.test.api.FooterAssertionsOP} instance.
3218
3490
  *
3491
+ *
3219
3492
  * @returns The available footer assertions
3220
3493
  */
3221
3494
  onFooter(): FooterAssertionsOP;
3222
3495
  /**
3223
3496
  * Returns a {@link sap.fe.test.api.FormAssertions} instance.
3224
3497
  *
3498
+ *
3225
3499
  * @returns The available form actions
3226
3500
  */
3227
3501
  onForm(
@@ -3233,12 +3507,14 @@ declare module "sap/fe/test/ObjectPage" {
3233
3507
  /**
3234
3508
  * Returns a {@link sap.fe.test.api.HeaderAssertions} instance.
3235
3509
  *
3510
+ *
3236
3511
  * @returns The available header assertions
3237
3512
  */
3238
3513
  onHeader(): HeaderAssertions;
3239
3514
  /**
3240
3515
  * Returns a {@link sap.fe.test.api.TableAssertions} instance for the specified table.
3241
3516
  *
3517
+ *
3242
3518
  * @returns The available table assertions
3243
3519
  */
3244
3520
  onTable(
@@ -3272,6 +3548,7 @@ declare module "sap/fe/test/Shell" {
3272
3548
  * Check an intent-based navigation. The function checks the semantic object and the action within the URL
3273
3549
  * of an application. Optionally, further URL parameters can be checked.
3274
3550
  *
3551
+ *
3275
3552
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3276
3553
  */
3277
3554
  iCheckIntentBasedNavigation(
@@ -3298,18 +3575,21 @@ declare module "sap/fe/test/Shell" {
3298
3575
  /**
3299
3576
  * Navigates back via shell back button.
3300
3577
  *
3578
+ *
3301
3579
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3302
3580
  */
3303
3581
  iNavigateBack(): object;
3304
3582
  /**
3305
3583
  * Navigates to the launch pad via the home button.
3306
3584
  *
3585
+ *
3307
3586
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3308
3587
  */
3309
3588
  iNavigateHome(): object;
3310
3589
  /**
3311
3590
  * Navigates via a navigation item in the shell's navigation menu.
3312
3591
  *
3592
+ *
3313
3593
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3314
3594
  */
3315
3595
  iNavigateViaMenu(
@@ -3321,6 +3601,7 @@ declare module "sap/fe/test/Shell" {
3321
3601
  /**
3322
3602
  * Opens the navigation menu in the shell header.
3323
3603
  *
3604
+ *
3324
3605
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3325
3606
  */
3326
3607
  iOpenNavigationMenu(
@@ -3333,6 +3614,7 @@ declare module "sap/fe/test/Shell" {
3333
3614
  /**
3334
3615
  * Selecting a tile in the launchpad by its target app, for example `iPressTile("SalesOrder-manage")`.
3335
3616
  *
3617
+ *
3336
3618
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3337
3619
  */
3338
3620
  iPressTile(
@@ -3367,7 +3649,10 @@ declare module "sap/fe/test/TemplatePage" {
3367
3649
  * Provides a test page definition for a template page with the corresponding parameters.
3368
3650
  */
3369
3651
  export default class TemplatePage {
3370
- constructor();
3652
+ /**
3653
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3654
+ */
3655
+ protected constructor();
3371
3656
  /**
3372
3657
  * TemplatePage actions
3373
3658
  */
@@ -3385,24 +3670,28 @@ declare module "sap/fe/test/TemplatePage" {
3385
3670
  /**
3386
3671
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
3387
3672
  *
3673
+ *
3388
3674
  * @returns The available dialog actions
3389
3675
  */
3390
3676
  onActionDialog(): DialogActions;
3391
3677
  /**
3392
3678
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
3393
3679
  *
3680
+ *
3394
3681
  * @returns The available dialog actions
3395
3682
  */
3396
3683
  onConfirmationDialog(): DialogActions;
3397
3684
  /**
3398
3685
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
3399
3686
  *
3687
+ *
3400
3688
  * @returns The available dialog actions
3401
3689
  */
3402
3690
  onCreateDialog(): DialogCreateActions;
3403
3691
  /**
3404
3692
  * Returns a {@link sap.fe.test.api.DialogActions} instance.
3405
3693
  *
3694
+ *
3406
3695
  * @returns The available dialog actions
3407
3696
  */
3408
3697
  onDialog(
@@ -3414,18 +3703,21 @@ declare module "sap/fe/test/TemplatePage" {
3414
3703
  /**
3415
3704
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
3416
3705
  *
3706
+ *
3417
3707
  * @returns The available dialog actions
3418
3708
  */
3419
3709
  onErrorDialog(): DialogActions;
3420
3710
  /**
3421
3711
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
3422
3712
  *
3713
+ *
3423
3714
  * @returns The available dialog actions
3424
3715
  */
3425
3716
  onMessageDialog(): DialogMessageActions;
3426
3717
  /**
3427
3718
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
3428
3719
  *
3720
+ *
3429
3721
  * @returns The available dialog actions
3430
3722
  */
3431
3723
  onValueHelpDialog(): DialogValueHelpActions;
@@ -3439,30 +3731,35 @@ declare module "sap/fe/test/TemplatePage" {
3439
3731
  /**
3440
3732
  * Confirms the visibility of the current page.
3441
3733
  *
3734
+ *
3442
3735
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
3443
3736
  */
3444
3737
  iSeeThisPage(): object;
3445
3738
  /**
3446
3739
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
3447
3740
  *
3741
+ *
3448
3742
  * @returns The available dialog assertions
3449
3743
  */
3450
3744
  onActionDialog(): DialogAssertions;
3451
3745
  /**
3452
3746
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Confirmation })`.
3453
3747
  *
3748
+ *
3454
3749
  * @returns The available dialog assertions
3455
3750
  */
3456
3751
  onConfirmationDialog(): DialogAssertions;
3457
3752
  /**
3458
3753
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Create })`.
3459
3754
  *
3755
+ *
3460
3756
  * @returns The available dialog assertions
3461
3757
  */
3462
3758
  onCreateDialog(): DialogCreateAssertions;
3463
3759
  /**
3464
3760
  * Returns a {@link sap.fe.test.api.DialogAssertions} instance.
3465
3761
  *
3762
+ *
3466
3763
  * @returns The available dialog actions
3467
3764
  */
3468
3765
  onDialog(
@@ -3474,18 +3771,21 @@ declare module "sap/fe/test/TemplatePage" {
3474
3771
  /**
3475
3772
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Error })`.
3476
3773
  *
3774
+ *
3477
3775
  * @returns The available dialog assertions
3478
3776
  */
3479
3777
  onErrorDialog(): DialogAssertions;
3480
3778
  /**
3481
3779
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Message })`.
3482
3780
  *
3781
+ *
3483
3782
  * @returns The available dialog assertions
3484
3783
  */
3485
3784
  onMessageDialog(): DialogMessageAssertions;
3486
3785
  /**
3487
3786
  * Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.ValueHelp })`.
3488
3787
  *
3788
+ *
3489
3789
  * @returns The available dialog assertions
3490
3790
  */
3491
3791
  onValueHelpDialog(): DialogValueHelpAssertions;