@thinkwise/testwise 0.1.75 → 0.1.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Testwise.ts +13 -4
- package/components/BaseComponentObjects.ts +1 -1
- package/components/actionbar/Actionbar.ts +45 -38
- package/components/actionbar/ActionbarObjects.ts +53 -17
- package/components/actionbar/CustomActionBar.ts +10 -0
- package/components/cardlist/Cardlist.ts +14 -0
- package/components/cardlist/CardlistObjects.ts +5 -0
- package/components/chart/Chart.ts +14 -0
- package/components/chart/ChartObjects.ts +5 -0
- package/components/combined-filter/CombinedFIlterObjects.ts +5 -0
- package/components/combined-filter/CombinedFilter.ts +14 -0
- package/components/cube-view-bar/CubeViewBar.ts +14 -0
- package/components/cube-view-bar/CubeViewBarObjects.ts +5 -0
- package/components/filter/FilterForm.ts +11 -8
- package/components/filter/FilterFormObjects.ts +5 -0
- package/components/filter/FindForm.ts +2 -10
- package/components/grid/Grid.ts +4 -2
- package/components/grid/GridObjects.ts +1 -1
- package/components/index.ts +21 -2
- package/components/maps/Maps.ts +14 -0
- package/components/maps/MapsObjects.ts +5 -0
- package/components/menu/ListBarMenuComponent.ts +37 -0
- package/components/menu/ListBarMenuComponentObjects.ts +14 -0
- package/components/pivot-grid/PivotGrid.ts +14 -0
- package/components/pivot-grid/PivotGridFieldList.ts +14 -0
- package/components/pivot-grid/PivotGridFieldListObjects.ts +5 -0
- package/components/pivot-grid/PivotGridObjects.ts +5 -0
- package/components/pop-up/PopUpComponent.ts +7 -5
- package/components/pop-up/PopUpComponentObjects.ts +4 -5
- package/components/prefilter-list/PrefilterList.ts +14 -0
- package/components/prefilter-list/PrefilterListObjects.ts +5 -0
- package/components/preview/Preview.ts +14 -0
- package/components/preview/PreviewObjects.ts +5 -0
- package/components/report-bar/ReportBar.ts +14 -0
- package/components/report-bar/ReportBarObjects.ts +5 -0
- package/components/report-tiles/ReportTiles.ts +14 -0
- package/components/report-tiles/ReportTilesObjects.ts +5 -0
- package/components/scheduler/Scheduler.ts +14 -0
- package/components/scheduler/SchedulerObjects.ts +5 -0
- package/components/snackbar/SnackBar.ts +29 -0
- package/components/snackbar/SnackBarObjects.ts +14 -0
- package/components/splitter/Splitter.ts +11 -0
- package/components/splitter/SplitterObjects.ts +5 -0
- package/components/tab/ComponentTab.ts +5 -0
- package/components/tab/ComponentTabObjects.ts +3 -0
- package/components/tab/DetailTab.ts +1 -1
- package/components/tab/DetailTabObjects.ts +2 -1
- package/components/tab/Tab.ts +14 -0
- package/components/tab/TabObjects.ts +5 -0
- package/components/task/TaskTiles.ts +28 -0
- package/components/task/TaskTilesObjects.ts +24 -0
- package/components/topbar/TopBar.ts +14 -0
- package/components/topbar/TopBarObjects.ts +12 -0
- package/components/tree-view/TreeView.ts +14 -0
- package/components/tree-view/TreeViewObjects.ts +5 -0
- package/dist/Testwise.d.ts +2 -1
- package/dist/Testwise.js +14 -5
- package/dist/Testwise.js.map +1 -1
- package/dist/bdd.d.ts +6 -0
- package/dist/bdd.js +9 -0
- package/dist/bdd.js.map +1 -0
- package/dist/biome.json +1 -1
- package/dist/components/BaseComponentObjects.d.ts +1 -1
- package/dist/components/actionbar/Actionbar.d.ts +31 -26
- package/dist/components/actionbar/Actionbar.js +34 -26
- package/dist/components/actionbar/Actionbar.js.map +1 -1
- package/dist/components/actionbar/ActionbarObjects.d.ts +23 -11
- package/dist/components/actionbar/ActionbarObjects.js +30 -11
- package/dist/components/actionbar/ActionbarObjects.js.map +1 -1
- package/dist/components/actionbar/CustomActionBar.d.ts +5 -0
- package/dist/components/actionbar/CustomActionBar.js +7 -0
- package/dist/components/actionbar/CustomActionBar.js.map +1 -0
- package/dist/components/cardlist/Cardlist.d.ts +7 -0
- package/dist/components/cardlist/Cardlist.js +10 -0
- package/dist/components/cardlist/Cardlist.js.map +1 -0
- package/dist/components/cardlist/CardlistObjects.d.ts +3 -0
- package/dist/components/cardlist/CardlistObjects.js +4 -0
- package/dist/components/cardlist/CardlistObjects.js.map +1 -0
- package/dist/components/chart/Chart.d.ts +7 -0
- package/dist/components/chart/Chart.js +10 -0
- package/dist/components/chart/Chart.js.map +1 -0
- package/dist/components/chart/ChartObjects.d.ts +3 -0
- package/dist/components/chart/ChartObjects.js +4 -0
- package/dist/components/chart/ChartObjects.js.map +1 -0
- package/dist/components/combined-filter/CombinedFIlterObjects.d.ts +3 -0
- package/dist/components/combined-filter/CombinedFIlterObjects.js +4 -0
- package/dist/components/combined-filter/CombinedFIlterObjects.js.map +1 -0
- package/dist/components/combined-filter/CombinedFilter.d.ts +7 -0
- package/dist/components/combined-filter/CombinedFilter.js +10 -0
- package/dist/components/combined-filter/CombinedFilter.js.map +1 -0
- package/dist/components/cube-view-bar/CubeViewBar.d.ts +7 -0
- package/dist/components/cube-view-bar/CubeViewBar.js +10 -0
- package/dist/components/cube-view-bar/CubeViewBar.js.map +1 -0
- package/dist/components/cube-view-bar/CubeViewBarObjects.d.ts +3 -0
- package/dist/components/cube-view-bar/CubeViewBarObjects.js +4 -0
- package/dist/components/cube-view-bar/CubeViewBarObjects.js.map +1 -0
- package/dist/components/filter/FilterForm.d.ts +6 -4
- package/dist/components/filter/FilterForm.js +7 -7
- package/dist/components/filter/FilterForm.js.map +1 -1
- package/dist/components/filter/FilterFormObjects.d.ts +3 -0
- package/dist/components/filter/FilterFormObjects.js +4 -0
- package/dist/components/filter/FilterFormObjects.js.map +1 -0
- package/dist/components/filter/FindForm.d.ts +1 -4
- package/dist/components/filter/FindForm.js +1 -8
- package/dist/components/filter/FindForm.js.map +1 -1
- package/dist/components/grid/Grid.js +4 -1
- package/dist/components/grid/Grid.js.map +1 -1
- package/dist/components/grid/GridObjects.js +1 -1
- package/dist/components/grid/GridObjects.js.map +1 -1
- package/dist/components/index.d.ts +21 -2
- package/dist/components/index.js +21 -2
- package/dist/components/index.js.map +1 -1
- package/dist/components/maps/Maps.d.ts +7 -0
- package/dist/components/maps/Maps.js +10 -0
- package/dist/components/maps/Maps.js.map +1 -0
- package/dist/components/maps/MapsObjects.d.ts +3 -0
- package/dist/components/maps/MapsObjects.js +4 -0
- package/dist/components/maps/MapsObjects.js.map +1 -0
- package/dist/components/menu/ListBarMenuComponent.d.ts +10 -0
- package/dist/components/menu/ListBarMenuComponent.js +29 -0
- package/dist/components/menu/ListBarMenuComponent.js.map +1 -0
- package/dist/components/menu/ListBarMenuComponentObjects.d.ts +7 -0
- package/dist/components/menu/ListBarMenuComponentObjects.js +8 -0
- package/dist/components/menu/ListBarMenuComponentObjects.js.map +1 -0
- package/dist/components/pivot-grid/PivotGrid.d.ts +7 -0
- package/dist/components/pivot-grid/PivotGrid.js +10 -0
- package/dist/components/pivot-grid/PivotGrid.js.map +1 -0
- package/dist/components/pivot-grid/PivotGridFieldList.d.ts +7 -0
- package/dist/components/pivot-grid/PivotGridFieldList.js +10 -0
- package/dist/components/pivot-grid/PivotGridFieldList.js.map +1 -0
- package/dist/components/pivot-grid/PivotGridFieldListObjects.d.ts +3 -0
- package/dist/components/pivot-grid/PivotGridFieldListObjects.js +4 -0
- package/dist/components/pivot-grid/PivotGridFieldListObjects.js.map +1 -0
- package/dist/components/pivot-grid/PivotGridObjects.d.ts +3 -0
- package/dist/components/pivot-grid/PivotGridObjects.js +4 -0
- package/dist/components/pivot-grid/PivotGridObjects.js.map +1 -0
- package/dist/components/pop-up/PopUpComponent.d.ts +5 -5
- package/dist/components/pop-up/PopUpComponent.js +6 -4
- package/dist/components/pop-up/PopUpComponent.js.map +1 -1
- package/dist/components/pop-up/PopUpComponentObjects.d.ts +3 -4
- package/dist/components/pop-up/PopUpComponentObjects.js +3 -4
- package/dist/components/pop-up/PopUpComponentObjects.js.map +1 -1
- package/dist/components/prefilter-list/PrefilterList.d.ts +7 -0
- package/dist/components/prefilter-list/PrefilterList.js +10 -0
- package/dist/components/prefilter-list/PrefilterList.js.map +1 -0
- package/dist/components/prefilter-list/PrefilterListObjects.d.ts +3 -0
- package/dist/components/prefilter-list/PrefilterListObjects.js +4 -0
- package/dist/components/prefilter-list/PrefilterListObjects.js.map +1 -0
- package/dist/components/preview/Preview.d.ts +7 -0
- package/dist/components/preview/Preview.js +10 -0
- package/dist/components/preview/Preview.js.map +1 -0
- package/dist/components/preview/PreviewObjects.d.ts +3 -0
- package/dist/components/preview/PreviewObjects.js +4 -0
- package/dist/components/preview/PreviewObjects.js.map +1 -0
- package/dist/components/report-bar/ReportBar.d.ts +7 -0
- package/dist/components/report-bar/ReportBar.js +10 -0
- package/dist/components/report-bar/ReportBar.js.map +1 -0
- package/dist/components/report-bar/ReportBarObjects.d.ts +3 -0
- package/dist/components/report-bar/ReportBarObjects.js +4 -0
- package/dist/components/report-bar/ReportBarObjects.js.map +1 -0
- package/dist/components/report-tiles/ReportTiles.d.ts +7 -0
- package/dist/components/report-tiles/ReportTiles.js +10 -0
- package/dist/components/report-tiles/ReportTiles.js.map +1 -0
- package/dist/components/report-tiles/ReportTilesObjects.d.ts +3 -0
- package/dist/components/report-tiles/ReportTilesObjects.js +4 -0
- package/dist/components/report-tiles/ReportTilesObjects.js.map +1 -0
- package/dist/components/scheduler/Scheduler.d.ts +7 -0
- package/dist/components/scheduler/Scheduler.js +10 -0
- package/dist/components/scheduler/Scheduler.js.map +1 -0
- package/dist/components/scheduler/SchedulerObjects.d.ts +3 -0
- package/dist/components/scheduler/SchedulerObjects.js +4 -0
- package/dist/components/scheduler/SchedulerObjects.js.map +1 -0
- package/dist/components/snackbar/SnackBar.d.ts +10 -0
- package/dist/components/snackbar/SnackBar.js +21 -0
- package/dist/components/snackbar/SnackBar.js.map +1 -0
- package/dist/components/snackbar/SnackBarObjects.d.ts +8 -0
- package/dist/components/snackbar/SnackBarObjects.js +10 -0
- package/dist/components/snackbar/SnackBarObjects.js.map +1 -0
- package/dist/components/splitter/Splitter.d.ts +6 -0
- package/dist/components/splitter/Splitter.js +8 -0
- package/dist/components/splitter/Splitter.js.map +1 -0
- package/dist/components/splitter/SplitterObjects.d.ts +3 -0
- package/dist/components/splitter/SplitterObjects.js +4 -0
- package/dist/components/splitter/SplitterObjects.js.map +1 -0
- package/dist/components/tab/ComponentTab.d.ts +1 -0
- package/dist/components/tab/ComponentTab.js +4 -0
- package/dist/components/tab/ComponentTab.js.map +1 -1
- package/dist/components/tab/ComponentTabObjects.d.ts +1 -0
- package/dist/components/tab/ComponentTabObjects.js +1 -0
- package/dist/components/tab/ComponentTabObjects.js.map +1 -1
- package/dist/components/tab/DetailTab.js +1 -1
- package/dist/components/tab/DetailTab.js.map +1 -1
- package/dist/components/tab/DetailTabObjects.d.ts +1 -0
- package/dist/components/tab/DetailTabObjects.js +1 -0
- package/dist/components/tab/DetailTabObjects.js.map +1 -1
- package/dist/components/tab/Tab.d.ts +7 -0
- package/dist/components/tab/Tab.js +10 -0
- package/dist/components/tab/Tab.js.map +1 -0
- package/dist/components/tab/TabObjects.d.ts +3 -0
- package/dist/components/tab/TabObjects.js +4 -0
- package/dist/components/tab/TabObjects.js.map +1 -0
- package/dist/components/task/{TaskTile.d.ts → TaskTiles.d.ts} +4 -4
- package/dist/components/task/TaskTiles.js +20 -0
- package/dist/components/task/TaskTiles.js.map +1 -0
- package/dist/components/task/{TaskTileObjects.d.ts → TaskTilesObjects.d.ts} +1 -1
- package/dist/components/task/TaskTilesObjects.js +18 -0
- package/dist/components/task/TaskTilesObjects.js.map +1 -0
- package/dist/components/topbar/TopBar.d.ts +7 -0
- package/dist/components/topbar/TopBar.js +9 -0
- package/dist/components/topbar/TopBar.js.map +1 -0
- package/dist/components/topbar/TopBarObjects.d.ts +7 -0
- package/dist/components/topbar/TopBarObjects.js +9 -0
- package/dist/components/topbar/TopBarObjects.js.map +1 -0
- package/dist/components/tree-view/TreeView.d.ts +7 -0
- package/dist/components/tree-view/TreeView.js +10 -0
- package/dist/components/tree-view/TreeView.js.map +1 -0
- package/dist/components/tree-view/TreeViewObjects.d.ts +3 -0
- package/dist/components/tree-view/TreeViewObjects.js +4 -0
- package/dist/components/tree-view/TreeViewObjects.js.map +1 -0
- package/dist/helpers/TestExtensions.d.ts +8 -0
- package/dist/helpers/TestExtensions.js +21 -0
- package/dist/helpers/TestExtensions.js.map +1 -0
- package/dist/interfaces/IComponentObjects.js.map +1 -0
- package/dist/interfaces/IStoredTestResults.d.ts +5 -0
- package/dist/interfaces/IStoredTestResults.js +2 -0
- package/dist/interfaces/IStoredTestResults.js.map +1 -0
- package/dist/package-lock.json +411 -615
- package/dist/package.json +3 -2
- package/dist/page-extensions/GlobalComponents.d.ts +5 -2
- package/dist/page-extensions/GlobalComponents.js +4 -1
- package/dist/page-extensions/GlobalComponents.js.map +1 -1
- package/dist/page-extensions/GoToDeepLink.d.ts +1 -1
- package/dist/page-extensions/LoginFeatures.d.ts +1 -1
- package/dist/page-extensions/UserSimulation.d.ts +1 -1
- package/dist/page-extensions/WaitEventHandler.d.ts +1 -1
- package/dist/page-overrides/ClickOverride.d.ts +1 -1
- package/dist/page-overrides/FillOverride.d.ts +1 -1
- package/dist/page-overrides/FillOverride.js +7 -6
- package/dist/page-overrides/FillOverride.js.map +1 -1
- package/dist/services/ReportingService.js.map +1 -1
- package/dist/types/Test.js +2 -0
- package/dist/types/Test.js.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/interfaces/IStoredTestResults.ts +6 -0
- package/package.json +3 -2
- package/page-extensions/GlobalComponents.ts +14 -2
- package/page-extensions/GoToDeepLink.ts +1 -1
- package/page-extensions/LoginFeatures.ts +1 -1
- package/page-extensions/UserSimulation.ts +1 -1
- package/page-extensions/WaitEventHandler.ts +1 -1
- package/page-overrides/ClickOverride.ts +1 -1
- package/page-overrides/FillOverride.ts +10 -7
- package/promptCredentials.js +124 -124
- package/scripts/setup.js +34 -34
- package/services/ReportingService.ts +2 -6
- package/types/index.ts +1 -1
- package/components/BaseComponent.ts +0 -95
- package/components/Splitter.ts +0 -11
- package/components/TSFComponent.ts +0 -8
- package/components/task/TaskTile.ts +0 -28
- package/components/task/TaskTileObjects.ts +0 -20
- package/dist/components/BaseComponent.d.ts +0 -29
- package/dist/components/BaseComponent.js +0 -67
- package/dist/components/BaseComponent.js.map +0 -1
- package/dist/components/IComponentObjects.js.map +0 -1
- package/dist/components/Splitter.d.ts +0 -5
- package/dist/components/Splitter.js +0 -10
- package/dist/components/Splitter.js.map +0 -1
- package/dist/components/TSFComponent.d.ts +0 -6
- package/dist/components/TSFComponent.js +0 -2
- package/dist/components/TSFComponent.js.map +0 -1
- package/dist/components/task/TaskTile.js +0 -20
- package/dist/components/task/TaskTile.js.map +0 -1
- package/dist/components/task/TaskTileObjects.js +0 -15
- package/dist/components/task/TaskTileObjects.js.map +0 -1
- package/dist/seed-data/screen-schemas/chart.json +0 -25
- package/dist/seed-data/screen-schemas/chart_horizontal.json +0 -25
- package/dist/seed-data/screen-schemas/chart_no_fields.json +0 -14
- package/dist/seed-data/screen-schemas/cube.json +0 -40
- package/dist/seed-data/screen-schemas/cube_horizontal.json +0 -40
- package/dist/seed-data/screen-schemas/cube_no_fields.json +0 -25
- package/dist/seed-data/screen-schemas/form_only.json +0 -20
- package/dist/seed-data/screen-schemas/form_with_tree.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_card_list.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_filter_form.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_map.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_prefilter_bar.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_report_bar.json +0 -20
- package/dist/seed-data/screen-schemas/grid_with_report_tiles.json +0 -20
- package/dist/seed-data/screen-schemas/hierarchy.json +0 -43
- package/dist/seed-data/screen-schemas/hierarchy_card_list.json +0 -39
- package/dist/seed-data/screen-schemas/hierarchy_no_filter.json +0 -38
- package/dist/seed-data/screen-schemas/look_up_popup.json +0 -48
- package/dist/seed-data/screen-schemas/master_detail.json +0 -39
- package/dist/seed-data/screen-schemas/master_detail_no_filter.json +0 -34
- package/dist/seed-data/screen-schemas/master_detail_vertical.json +0 -39
- package/dist/seed-data/screen-schemas/master_detail_with_preview.json +0 -25
- package/dist/seed-data/screen-schemas/master_detail_with_task_bar.json +0 -48
- package/dist/seed-data/screen-schemas/master_detail_with_task_tiles.json +0 -44
- package/dist/seed-data/screen-schemas/master_vertical_detail.json +0 -39
- package/dist/seed-data/screen-schemas/pivot_grid.json +0 -25
- package/dist/seed-data/screen-schemas/pivot_grid_horizontal.json +0 -25
- package/dist/seed-data/screen-schemas/pivot_grid_no_fields.json +0 -14
- package/dist/seed-data/screen-schemas/scheduler.json +0 -14
- package/dist/seed-data/screen-schemas/test.json +0 -30
- package/dist/seed-data/screen-schemas/testpoonam.json +0 -40
- package/dist/seed-data/screen-schemas/view_customer_cube.json +0 -36
- package/dist/seed-data/subjects.json +0 -1586
- package/dist/types/CoreTypes.js +0 -2
- package/dist/types/CoreTypes.js.map +0 -1
- /package/dist/{components → interfaces}/IComponentObjects.d.ts +0 -0
- /package/dist/{components → interfaces}/IComponentObjects.js +0 -0
- /package/dist/types/{CoreTypes.d.ts → Test.d.ts} +0 -0
- /package/{components → interfaces}/IComponentObjects.ts +0 -0
- /package/types/{CoreTypes.ts → Test.ts} +0 -0
|
@@ -5,7 +5,7 @@ export class GridObjects extends BaseComponentObjects {
|
|
|
5
5
|
this.columnHeaderByText = (text) => this.context.locator('[role="columnheader"]', { hasText: text });
|
|
6
6
|
this.columnHeaders = () => this.context.locator('[role="columnheader"]');
|
|
7
7
|
this.columnHeaderByName = (columnName) => this.context.getByRole('columnheader', { name: columnName });
|
|
8
|
-
this.menuIconByColumnHeaderName = (columnName) => this.columnHeaderByName(columnName).getByTestId('
|
|
8
|
+
this.menuIconByColumnHeaderName = (columnName) => this.columnHeaderByName(columnName).getByTestId('grid__custom__filter__icon');
|
|
9
9
|
this.rowByIndex = (row) => this.context.locator(`[role="row"][row-index="${row}"]`);
|
|
10
10
|
this.rowByRowId = (rowIdPattern) => this.context.locator(`[role="row"][row-id$="|${rowIdPattern}"]`);
|
|
11
11
|
this.cellByValue = (value) => this.context.locator('[role="button"]', {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GridObjects.js","sourceRoot":"","sources":["../../../components/grid/GridObjects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,WAAY,SAAQ,oBAAoB;IAGnD,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAIhB,uBAAkB,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,uBAAuB,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC;QAExG,kBAAa,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC;QAEpE,uBAAkB,GAAG,CAAC,UAAkB,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC,CAAC;QAE1G,+BAA0B,GAAG,CAAC,UAAkB,EAAE,EAAE,CACzD,IAAI,CAAC,kBAAkB,CAAC,UAAU,CAAC,CAAC,WAAW,CAAC,
|
|
1
|
+
{"version":3,"file":"GridObjects.js","sourceRoot":"","sources":["../../../components/grid/GridObjects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,WAAY,SAAQ,oBAAoB;IAGnD,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAIhB,uBAAkB,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,uBAAuB,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC;QAExG,kBAAa,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC;QAEpE,uBAAkB,GAAG,CAAC,UAAkB,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC,CAAC;QAE1G,+BAA0B,GAAG,CAAC,UAAkB,EAAE,EAAE,CACzD,IAAI,CAAC,kBAAkB,CAAC,UAAU,CAAC,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC;QAEzE,eAAU,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC,CAAC;QAEvF,eAAU,GAAG,CAAC,YAAoB,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,0BAA0B,YAAY,IAAI,CAAC,CAAC;QAExG,gBAAW,GAAG,CAAC,KAAa,EAAE,EAAE,CACrC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,iBAAiB,EAAE;YACtC,OAAO,EAAE,KAAK;SACf,CAAC,CAAC;QAEE,SAAI,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QAElD,sBAAiB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,mCAAmC,CAAC,CAAC;QAEpF,wBAAmB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC;QAExF,oBAAe,GAAG,CAAC,KAAa,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,KAAK,oBAAoB,CAAC,CAAC;QAEjG,uBAAkB,GAAG,CAAC,UAAmB,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;QAE7E,0BAAqB,GAAG,CAAC,QAAgB,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,wBAAwB,QAAQ,QAAQ,CAAC,CAAC;QAE/G,sCAAiC,GAAG,CAAC,QAAgB,EAAE,EAAE,CAC9D,IAAI,CAAC,KAAK,CAAC,OAAO,CAChB,sCAAsC,QAAQ,0DAA0D,CACzG,CAAC;QAEG,sCAAiC,GAAG,CAAC,QAAgB,EAAE,UAAkB,EAAE,EAAE,CAClF,IAAI,CAAC,KAAK;aACP,OAAO,CAAC,uCAAuC,QAAQ,sBAAsB,CAAC;aAC9E,MAAM,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC,CAAC;QAE9B,aAAQ,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC;QAE3D,kBAAa,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,4BAA4B,CAAC,CAAC;QA7C9E,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,CAAC;CA6CF"}
|
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
export * from './actionbar/Actionbar.js';
|
|
2
|
+
export * from './actionbar/CustomActionBar.js';
|
|
3
|
+
export * from './cardlist/Cardlist.js';
|
|
4
|
+
export * from './chart/Chart.js';
|
|
5
|
+
export * from './combined-filter/CombinedFilter.js';
|
|
6
|
+
export * from './cube-view-bar/CubeViewBar.js';
|
|
2
7
|
export * from './export/ExportComponent.js';
|
|
8
|
+
export * from './filter/FilterForm.js';
|
|
3
9
|
export * from './form/Form.js';
|
|
4
10
|
export * from './grid/Grid.js';
|
|
11
|
+
export * from './maps/Maps.js';
|
|
12
|
+
export * from './menu/ListBarMenuComponent.js';
|
|
13
|
+
export * from './pivot-grid/PivotGrid.js';
|
|
14
|
+
export * from './pivot-grid/PivotGridFieldList.js';
|
|
5
15
|
export * from './pop-up/PopUpComponent.js';
|
|
6
|
-
export * from './
|
|
16
|
+
export * from './prefilter-list/PrefilterList.js';
|
|
17
|
+
export * from './preview/Preview.js';
|
|
18
|
+
export * from './report-bar/ReportBar.js';
|
|
19
|
+
export * from './report-tiles/ReportTiles.js';
|
|
20
|
+
export * from './scheduler/Scheduler.js';
|
|
21
|
+
export * from './snackbar/SnackBar.js';
|
|
22
|
+
export * from './splitter/Splitter.js';
|
|
7
23
|
export * from './tab/ComponentTab.js';
|
|
8
24
|
export * from './tab/DetailTab.js';
|
|
25
|
+
export * from './tab/Tab.js';
|
|
9
26
|
export * from './task/TaskBar.js';
|
|
10
|
-
export * from './task/
|
|
27
|
+
export * from './task/TaskTiles.js';
|
|
28
|
+
export * from './topbar/TopBar.js';
|
|
29
|
+
export * from './tree-view/TreeView.js';
|
package/dist/components/index.js
CHANGED
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
export * from './actionbar/Actionbar.js';
|
|
2
|
+
export * from './actionbar/CustomActionBar.js';
|
|
3
|
+
export * from './cardlist/Cardlist.js';
|
|
4
|
+
export * from './chart/Chart.js';
|
|
5
|
+
export * from './combined-filter/CombinedFilter.js';
|
|
6
|
+
export * from './cube-view-bar/CubeViewBar.js';
|
|
2
7
|
export * from './export/ExportComponent.js';
|
|
8
|
+
export * from './filter/FilterForm.js';
|
|
3
9
|
export * from './form/Form.js';
|
|
4
10
|
export * from './grid/Grid.js';
|
|
11
|
+
export * from './maps/Maps.js';
|
|
12
|
+
export * from './menu/ListBarMenuComponent.js';
|
|
13
|
+
export * from './pivot-grid/PivotGrid.js';
|
|
14
|
+
export * from './pivot-grid/PivotGridFieldList.js';
|
|
5
15
|
export * from './pop-up/PopUpComponent.js';
|
|
6
|
-
export * from './
|
|
16
|
+
export * from './prefilter-list/PrefilterList.js';
|
|
17
|
+
export * from './preview/Preview.js';
|
|
18
|
+
export * from './report-bar/ReportBar.js';
|
|
19
|
+
export * from './report-tiles/ReportTiles.js';
|
|
20
|
+
export * from './scheduler/Scheduler.js';
|
|
21
|
+
export * from './snackbar/SnackBar.js';
|
|
22
|
+
export * from './splitter/Splitter.js';
|
|
7
23
|
export * from './tab/ComponentTab.js';
|
|
8
24
|
export * from './tab/DetailTab.js';
|
|
25
|
+
export * from './tab/Tab.js';
|
|
9
26
|
export * from './task/TaskBar.js';
|
|
10
|
-
export * from './task/
|
|
27
|
+
export * from './task/TaskTiles.js';
|
|
28
|
+
export * from './topbar/TopBar.js';
|
|
29
|
+
export * from './tree-view/TreeView.js';
|
|
11
30
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../components/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../components/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mCAAmC,CAAC;AAClD,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MapsObjects } from './MapsObjects.js';
|
|
2
|
+
export class Maps {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.mapsObjects = new MapsObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.mapsObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Maps.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Maps.js","sourceRoot":"","sources":["../../../components/maps/Maps.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE/C,MAAM,OAAO,IAAI;IAGf,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,WAAW,GAAG,IAAI,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACpD,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;IAClC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MapsObjects.js","sourceRoot":"","sources":["../../../components/maps/MapsObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,WAAY,SAAQ,oBAAoB;CAEpD"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
export declare class ListBarMenuComponent {
|
|
3
|
+
private _objects;
|
|
4
|
+
constructor(page: Page);
|
|
5
|
+
private ensureGroupIsExpanded;
|
|
6
|
+
openListBarMenuItem(groupName: string, itemName: string): Promise<void>;
|
|
7
|
+
expandListBarMenuGroup(groupName: string): Promise<void>;
|
|
8
|
+
getMenuGroupByName(groupName: string): Locator;
|
|
9
|
+
getMenuItemByName(groupName: string, itemName: string): Locator;
|
|
10
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ListBarMenuComponentObjects } from './ListBarMenuComponentObjects.js';
|
|
2
|
+
export class ListBarMenuComponent {
|
|
3
|
+
constructor(page) {
|
|
4
|
+
this._objects = new ListBarMenuComponentObjects(page);
|
|
5
|
+
}
|
|
6
|
+
async ensureGroupIsExpanded(groupName) {
|
|
7
|
+
const menuGroup = this._objects.menuGroup(groupName);
|
|
8
|
+
const classAttribute = await menuGroup.getAttribute('class');
|
|
9
|
+
const isOpened = classAttribute?.includes('opened');
|
|
10
|
+
if (!isOpened) {
|
|
11
|
+
await menuGroup.click();
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
async openListBarMenuItem(groupName, itemName) {
|
|
15
|
+
const menuItem = this._objects.menuItem(groupName, itemName);
|
|
16
|
+
await this.ensureGroupIsExpanded(groupName);
|
|
17
|
+
await menuItem.click();
|
|
18
|
+
}
|
|
19
|
+
async expandListBarMenuGroup(groupName) {
|
|
20
|
+
await this.ensureGroupIsExpanded(groupName);
|
|
21
|
+
}
|
|
22
|
+
getMenuGroupByName(groupName) {
|
|
23
|
+
return this._objects.menuGroup(groupName);
|
|
24
|
+
}
|
|
25
|
+
getMenuItemByName(groupName, itemName) {
|
|
26
|
+
return this._objects.menuItem(groupName, itemName);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=ListBarMenuComponent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListBarMenuComponent.js","sourceRoot":"","sources":["../../../components/menu/ListBarMenuComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,MAAM,OAAO,oBAAoB;IAG/B,YAAY,IAAU;QACpB,IAAI,CAAC,QAAQ,GAAG,IAAI,2BAA2B,CAAC,IAAI,CAAC,CAAC;IACxD,CAAC;IAEO,KAAK,CAAC,qBAAqB,CAAC,SAAiB;QACnD,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;QACrD,MAAM,cAAc,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC7D,MAAM,QAAQ,GAAG,cAAc,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QACpD,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,MAAM,SAAS,CAAC,KAAK,EAAE,CAAC;QAC1B,CAAC;IACH,CAAC;IAEM,KAAK,CAAC,mBAAmB,CAAC,SAAiB,EAAE,QAAgB;QAClE,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;QAC7D,MAAM,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;QAC5C,MAAM,QAAQ,CAAC,KAAK,EAAE,CAAC;IACzB,CAAC;IAEM,KAAK,CAAC,sBAAsB,CAAC,SAAiB;QACnD,MAAM,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;IAC9C,CAAC;IAEM,kBAAkB,CAAC,SAAiB;QACzC,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;IAC5C,CAAC;IAEM,iBAAiB,CAAC,SAAiB,EAAE,QAAgB;QAC1D,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;IACrD,CAAC;CACF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Page } from '@playwright/test';
|
|
2
|
+
export declare class ListBarMenuComponentObjects {
|
|
3
|
+
private _page;
|
|
4
|
+
constructor(page: Page);
|
|
5
|
+
menuGroup: (groupName: string) => import("@playwright/test").Locator;
|
|
6
|
+
menuItem: (groupName: string, itemName: string) => import("@playwright/test").Locator;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export class ListBarMenuComponentObjects {
|
|
2
|
+
constructor(page) {
|
|
3
|
+
this.menuGroup = (groupName) => this._page.locator(`[data-testid="listbar__${groupName}"]`);
|
|
4
|
+
this.menuItem = (groupName, itemName) => this._page.locator(`[data-testid="listbar__${groupName}__item__${itemName}"]`);
|
|
5
|
+
this._page = page;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=ListBarMenuComponentObjects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListBarMenuComponentObjects.js","sourceRoot":"","sources":["../../../components/menu/ListBarMenuComponentObjects.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,2BAA2B;IAGtC,YAAY,IAAU;QAIf,cAAS,GAAG,CAAC,SAAiB,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,0BAA0B,SAAS,IAAI,CAAC,CAAC;QAE/F,aAAQ,GAAG,CAAC,SAAiB,EAAE,QAAgB,EAAE,EAAE,CACxD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,0BAA0B,SAAS,WAAW,QAAQ,IAAI,CAAC,CAAC;QAN/E,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,CAAC;CAMF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { PivotGridObjects } from './PivotGridObjects.js';
|
|
3
|
+
export declare class PivotGrid {
|
|
4
|
+
pivotGridObjects: PivotGridObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PivotGridObjects } from './PivotGridObjects.js';
|
|
2
|
+
export class PivotGrid {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.pivotGridObjects = new PivotGridObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.pivotGridObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PivotGrid.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PivotGrid.js","sourceRoot":"","sources":["../../../components/pivot-grid/PivotGrid.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,MAAM,OAAO,SAAS;IAGpB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,gBAAgB,GAAG,IAAI,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC;IACvC,CAAC;CACF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { PivotGridFieldListObjects } from './PivotGridFieldListObjects.js';
|
|
3
|
+
export declare class PivotGridFieldList {
|
|
4
|
+
pivotGridFieldListObjects: PivotGridFieldListObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PivotGridFieldListObjects } from './PivotGridFieldListObjects.js';
|
|
2
|
+
export class PivotGridFieldList {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.pivotGridFieldListObjects = new PivotGridFieldListObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.pivotGridFieldListObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PivotGridFieldList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PivotGridFieldList.js","sourceRoot":"","sources":["../../../components/pivot-grid/PivotGridFieldList.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3E,MAAM,OAAO,kBAAkB;IAG7B,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,yBAAyB,GAAG,IAAI,yBAAyB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAChF,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,yBAAyB,CAAC,OAAO,CAAC;IAChD,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PivotGridFieldListObjects.js","sourceRoot":"","sources":["../../../components/pivot-grid/PivotGridFieldListObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,yBAA0B,SAAQ,oBAAoB;CAElE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PivotGridObjects.js","sourceRoot":"","sources":["../../../components/pivot-grid/PivotGridObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,gBAAiB,SAAQ,oBAAoB;CAEzD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { Page } from '@playwright/test';
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
2
|
export declare class PopUpComponent {
|
|
3
3
|
private _objects;
|
|
4
4
|
constructor(page: Page);
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
getContentText: () => Promise<string | null>;
|
|
6
|
+
getContentBody: () => Locator;
|
|
7
|
+
getHeadingText: () => Promise<string | null>;
|
|
8
|
+
getActionButtonByText(text: string): Locator;
|
|
9
9
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { PopUpComponentObjects } from './PopUpComponentObjects.js';
|
|
2
2
|
export class PopUpComponent {
|
|
3
3
|
constructor(page) {
|
|
4
|
-
this.
|
|
5
|
-
this.
|
|
6
|
-
this.
|
|
7
|
-
this.clickCloseButton = async () => await this._objects.closeButton().click();
|
|
4
|
+
this.getContentText = async () => await this._objects.content().textContent();
|
|
5
|
+
this.getContentBody = () => this._objects.content();
|
|
6
|
+
this.getHeadingText = async () => await this._objects.heading().textContent();
|
|
8
7
|
this._objects = new PopUpComponentObjects(page);
|
|
9
8
|
}
|
|
9
|
+
getActionButtonByText(text) {
|
|
10
|
+
return this._objects.actionButton(text);
|
|
11
|
+
}
|
|
10
12
|
}
|
|
11
13
|
//# sourceMappingURL=PopUpComponent.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopUpComponent.js","sourceRoot":"","sources":["../../../components/pop-up/PopUpComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,MAAM,OAAO,cAAc;IAGzB,YAAY,IAAU;QAIf,
|
|
1
|
+
{"version":3,"file":"PopUpComponent.js","sourceRoot":"","sources":["../../../components/pop-up/PopUpComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,MAAM,OAAO,cAAc;IAGzB,YAAY,IAAU;QAIf,mBAAc,GAAG,KAAK,IAAI,EAAE,CAAC,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,EAAE,CAAC;QAEzE,mBAAc,GAAG,GAAY,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;QAExD,mBAAc,GAAG,KAAK,IAAI,EAAE,CAAC,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,EAAE,CAAC;QAP9E,IAAI,CAAC,QAAQ,GAAG,IAAI,qBAAqB,CAAC,IAAI,CAAC,CAAC;IAClD,CAAC;IAQM,qBAAqB,CAAC,IAAY;QACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;CACF"}
|
|
@@ -2,8 +2,7 @@ import type { Page } from '@playwright/test';
|
|
|
2
2
|
export declare class PopUpComponentObjects {
|
|
3
3
|
private _page;
|
|
4
4
|
constructor(page: Page);
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
closeButton: () => import("@playwright/test").Locator;
|
|
5
|
+
content: () => import("@playwright/test").Locator;
|
|
6
|
+
heading: () => import("@playwright/test").Locator;
|
|
7
|
+
actionButton: (text: string) => import("@playwright/test").Locator;
|
|
9
8
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
export class PopUpComponentObjects {
|
|
2
2
|
constructor(page) {
|
|
3
|
-
this.
|
|
4
|
-
this.
|
|
5
|
-
this.
|
|
6
|
-
this.closeButton = () => this._page.getByTestId('popup__tsfmessage__actions__close');
|
|
3
|
+
this.content = () => this._page.locator('.popup__content');
|
|
4
|
+
this.heading = () => this._page.locator('.popup__title');
|
|
5
|
+
this.actionButton = (text) => this._page.locator(`[data-testid^="popup__"][data-testid$="__actions__${text}"]`);
|
|
7
6
|
this._page = page;
|
|
8
7
|
}
|
|
9
8
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopUpComponentObjects.js","sourceRoot":"","sources":["../../../components/pop-up/PopUpComponentObjects.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,qBAAqB;IAGhC,YAAY,IAAU;QAIf,
|
|
1
|
+
{"version":3,"file":"PopUpComponentObjects.js","sourceRoot":"","sources":["../../../components/pop-up/PopUpComponentObjects.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,qBAAqB;IAGhC,YAAY,IAAU;QAIf,YAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC;QAEtD,YAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;QAEpD,iBAAY,GAAG,CAAC,IAAY,EAAE,EAAE,CACrC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,qDAAqD,IAAI,IAAI,CAAC,CAAC;QARlF,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,CAAC;CAQF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { PrefilterListObjects } from './PrefilterListObjects.js';
|
|
3
|
+
export declare class PrefilterList {
|
|
4
|
+
prefilterListObjects: PrefilterListObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PrefilterListObjects } from './PrefilterListObjects.js';
|
|
2
|
+
export class PrefilterList {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.prefilterListObjects = new PrefilterListObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.prefilterListObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PrefilterList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrefilterList.js","sourceRoot":"","sources":["../../../components/prefilter-list/PrefilterList.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE,MAAM,OAAO,aAAa;IAGxB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,oBAAoB,GAAG,IAAI,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACtE,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC;IAC3C,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrefilterListObjects.js","sourceRoot":"","sources":["../../../components/prefilter-list/PrefilterListObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,oBAAqB,SAAQ,oBAAoB;CAE7D"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PreviewObjects } from './PreviewObjects.js';
|
|
2
|
+
export class Preview {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.previewObjects = new PreviewObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.previewObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Preview.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Preview.js","sourceRoot":"","sources":["../../../components/preview/Preview.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAErD,MAAM,OAAO,OAAO;IAGlB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,cAAc,GAAG,IAAI,cAAc,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC;IACrC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PreviewObjects.js","sourceRoot":"","sources":["../../../components/preview/PreviewObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,cAAe,SAAQ,oBAAoB;CAEvD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { ReportBarObjects } from './ReportBarObjects.js';
|
|
3
|
+
export declare class ReportBar {
|
|
4
|
+
reportBarObjects: ReportBarObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReportBarObjects } from './ReportBarObjects.js';
|
|
2
|
+
export class ReportBar {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.reportBarObjects = new ReportBarObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.reportBarObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=ReportBar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportBar.js","sourceRoot":"","sources":["../../../components/report-bar/ReportBar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,MAAM,OAAO,SAAS;IAGpB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,gBAAgB,GAAG,IAAI,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC;IACvC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportBarObjects.js","sourceRoot":"","sources":["../../../components/report-bar/ReportBarObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,gBAAiB,SAAQ,oBAAoB;CAEzD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { ReportTilesObjects } from './ReportTilesObjects.js';
|
|
3
|
+
export declare class ReportTiles {
|
|
4
|
+
reportTilesObjects: ReportTilesObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReportTilesObjects } from './ReportTilesObjects.js';
|
|
2
|
+
export class ReportTiles {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.reportTilesObjects = new ReportTilesObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.reportTilesObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=ReportTiles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportTiles.js","sourceRoot":"","sources":["../../../components/report-tiles/ReportTiles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,MAAM,OAAO,WAAW;IAGtB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,kBAAkB,GAAG,IAAI,kBAAkB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAClE,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC;IACzC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportTilesObjects.js","sourceRoot":"","sources":["../../../components/report-tiles/ReportTilesObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,kBAAmB,SAAQ,oBAAoB;CAE3D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { SchedulerObjects } from './SchedulerObjects.js';
|
|
3
|
+
export declare class Scheduler {
|
|
4
|
+
treeViewObjects: SchedulerObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SchedulerObjects } from './SchedulerObjects.js';
|
|
2
|
+
export class Scheduler {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.treeViewObjects = new SchedulerObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.treeViewObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Scheduler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Scheduler.js","sourceRoot":"","sources":["../../../components/scheduler/Scheduler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,MAAM,OAAO,SAAS;IAGpB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,eAAe,GAAG,IAAI,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC;IACtC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SchedulerObjects.js","sourceRoot":"","sources":["../../../components/scheduler/SchedulerObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,gBAAiB,SAAQ,oBAAoB;CAEzD"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
export declare class SnackBarComponent {
|
|
3
|
+
private _objects;
|
|
4
|
+
constructor(page: Page, snackBarContext?: Locator | null);
|
|
5
|
+
getSnackbar: () => Locator;
|
|
6
|
+
getSnackbarText(index?: number): Promise<string | null>;
|
|
7
|
+
snackBarText(index?: number): Promise<string | null>;
|
|
8
|
+
showMessagesButton(): Locator;
|
|
9
|
+
showMessageButton(): Promise<Locator>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SnackBarObjects } from './SnackBarObjects.js';
|
|
2
|
+
export class SnackBarComponent {
|
|
3
|
+
constructor(page, snackBarContext = null) {
|
|
4
|
+
this.getSnackbar = () => this._objects.snackBar();
|
|
5
|
+
this._objects = new SnackBarObjects(page, snackBarContext);
|
|
6
|
+
}
|
|
7
|
+
async getSnackbarText(index = 0) {
|
|
8
|
+
const snackbarMessage = this._objects.snackBar(index);
|
|
9
|
+
return await snackbarMessage.textContent();
|
|
10
|
+
}
|
|
11
|
+
async snackBarText(index = 0) {
|
|
12
|
+
return await this._objects.snackBar(index).textContent();
|
|
13
|
+
}
|
|
14
|
+
showMessagesButton() {
|
|
15
|
+
return this._objects.showMessagesButton();
|
|
16
|
+
}
|
|
17
|
+
async showMessageButton() {
|
|
18
|
+
return this._objects.showMessageButton();
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=SnackBar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SnackBar.js","sourceRoot":"","sources":["../../../components/snackbar/SnackBar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,MAAM,OAAO,iBAAiB;IAG5B,YAAY,IAAU,EAAE,kBAAkC,IAAI;QAIvD,gBAAW,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;QAHlD,IAAI,CAAC,QAAQ,GAAG,IAAI,eAAe,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IAC7D,CAAC;IAIM,KAAK,CAAC,eAAe,CAAC,QAAgB,CAAC;QAC5C,MAAM,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;QACtD,OAAO,MAAM,eAAe,CAAC,WAAW,EAAE,CAAC;IAC7C,CAAC;IAEM,KAAK,CAAC,YAAY,CAAC,QAAgB,CAAC;QACzC,OAAO,MAAM,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC;IAC3D,CAAC;IAEM,kBAAkB;QACvB,OAAO,IAAI,CAAC,QAAQ,CAAC,kBAAkB,EAAE,CAAC;IAC5C,CAAC;IAEM,KAAK,CAAC,iBAAiB;QAC5B,OAAO,IAAI,CAAC,QAAQ,CAAC,iBAAiB,EAAE,CAAC;IAC3C,CAAC;CACF"}
|