@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
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
import { ActionbarObjects, ActionbarOverflowableObjects } from './ActionbarObjects.js';
|
|
2
2
|
class ActionbarActions {
|
|
3
3
|
constructor(page, context = null) {
|
|
4
|
+
this.getSearchInput = () => this._objects.searchInput();
|
|
5
|
+
this.getPrefilterButton = () => this._objects.prefilterButton();
|
|
6
|
+
this.getPrefilterButtonById = (id) => this._objects.prefilterButtonById(id);
|
|
7
|
+
this.getFilterButton = () => this._objects.filterButton();
|
|
4
8
|
this.getAddButton = () => this._objects.addButton();
|
|
5
|
-
this.getCancelButton = () => this._objects.cancelButton();
|
|
6
9
|
this.getCopyButton = () => this._objects.copyButton();
|
|
10
|
+
this.getUpdateButton = () => this._objects.updateButton();
|
|
7
11
|
this.getDeleteButton = () => this._objects.deleteButton();
|
|
8
|
-
this.getRefreshButton = () => this._objects.refreshButton();
|
|
9
12
|
this.getSaveButton = () => this._objects.saveButton();
|
|
10
|
-
this.
|
|
11
|
-
this.
|
|
12
|
-
this.getImportButton = () => this._objects.importButton();
|
|
13
|
-
this.getExportImmediatelyButton = () => this._objects.exportImmediatelyButton();
|
|
14
|
-
this.getMassUpdateButton = () => this._objects.massUpdateButton();
|
|
13
|
+
this.getCancelButton = () => this._objects.cancelButton();
|
|
14
|
+
this.getRefreshButton = () => this._objects.refreshButton();
|
|
15
15
|
this.getQuickFilterButton = () => this._objects.quickFilterButton();
|
|
16
|
-
this.getFilterButton = () => this._objects.filterButton();
|
|
17
16
|
this.getClearAllFiltersButton = () => this._objects.clearAllFiltersButton();
|
|
18
|
-
this.getRestoreSortOrderButton = () => this._objects.restoreSortOrderButton();
|
|
19
17
|
this.getSortButton = () => this._objects.sortButton();
|
|
20
|
-
this.
|
|
18
|
+
this.getRestoreSortOrderButton = () => this._objects.restoreSortOrderButton();
|
|
19
|
+
this.getImportButton = () => this._objects.importButton();
|
|
20
|
+
this.getExportButton = () => this._objects.exportButton();
|
|
21
|
+
this.getExportImmediatelyButton = () => this._objects.exportImmediatelyButton();
|
|
22
|
+
this.getMassUpdateButton = () => this._objects.massUpdateButton();
|
|
21
23
|
this.getUpScreenTypeButton = () => this._objects.upScreenTypeButton();
|
|
22
24
|
this.getUpDetailSettingsButton = () => this._objects.upDetailSettingsButton();
|
|
23
25
|
this.getUpManagePrefiltersButton = () => this._objects.upManagePrefiltersButton();
|
|
@@ -25,10 +27,23 @@ class ActionbarActions {
|
|
|
25
27
|
this.getCubeSortButton = () => this._objects.cubeSortButton();
|
|
26
28
|
this.getCubePivotSettingsButton = () => this._objects.cubePivotSettingsButton();
|
|
27
29
|
this.getCubeChartSettingsButton = () => this._objects.cubeChartSettingsButton();
|
|
28
|
-
this.
|
|
30
|
+
this.getExportPivotButton = () => this._objects.exportPivotButton();
|
|
29
31
|
this.getDeleteCubeViewButton = () => this._objects.deleteCubeViewButton();
|
|
32
|
+
this.getSaveAsCubeViewButton = () => this._objects.saveAsCubeViewButton();
|
|
30
33
|
this.getCollapseAllButton = () => this._objects.collapseAllButton();
|
|
31
34
|
this.getExpandAllButton = () => this._objects.expandAllButton();
|
|
35
|
+
// Tasks
|
|
36
|
+
this.getTaskButtons = () => this._objects.taskButtons();
|
|
37
|
+
this.getTaskButtonById = (id) => this._objects.taskButtonById(id);
|
|
38
|
+
this.getTaskButtonByLabel = (label) => this._objects.taskButtonByLabel(label);
|
|
39
|
+
// Reports
|
|
40
|
+
this.getReportButtons = () => this._objects.reportButtons();
|
|
41
|
+
this.getReportButtonById = (id) => this._objects.reportButtonById(id);
|
|
42
|
+
this.getReportButtonByLabel = (label) => this._objects.reportButtonByLabel(label);
|
|
43
|
+
// Cube Views
|
|
44
|
+
this.getCubeViewButtons = () => this._objects.cubeViewButtons();
|
|
45
|
+
this.getCubeViewButtonById = (id) => this._objects.cubeViewButtonById(id);
|
|
46
|
+
this.getCubeViewButtonByLabel = (label) => this._objects.cubeViewButtonByLabel(label);
|
|
32
47
|
this._objects = new ActionbarOverflowableObjects(page, context);
|
|
33
48
|
}
|
|
34
49
|
}
|
|
@@ -39,23 +54,15 @@ export class Actionbar extends ActionbarActions {
|
|
|
39
54
|
await this._actionbarObjects.overflowMenuButton().click();
|
|
40
55
|
};
|
|
41
56
|
this.overflowMenu = {
|
|
42
|
-
getAddButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getAddButton()),
|
|
43
|
-
getCancelButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCancelButton()),
|
|
44
|
-
getCopyButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCopyButton()),
|
|
45
|
-
getDeleteButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getDeleteButton()),
|
|
46
|
-
getRefreshButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getRefreshButton()),
|
|
47
|
-
getSaveButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getSaveButton()),
|
|
48
|
-
getUpdateButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getUpdateButton()),
|
|
49
|
-
getExportButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExportButton()),
|
|
50
|
-
getImportButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getImportButton()),
|
|
51
|
-
getExportImmediatelyButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExportImmediatelyButton()),
|
|
52
|
-
getMassUpdateButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getMassUpdateButton()),
|
|
53
|
-
getQuickFilterButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getQuickFilterButton()),
|
|
54
57
|
getFilterButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getFilterButton()),
|
|
58
|
+
getQuickFilterButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getQuickFilterButton()),
|
|
55
59
|
getClearAllFiltersButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getClearAllFiltersButton()),
|
|
56
|
-
getRestoreSortOrderButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getRestoreSortOrderButton()),
|
|
57
60
|
getSortButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getSortButton()),
|
|
58
|
-
|
|
61
|
+
getRestoreSortOrderButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getRestoreSortOrderButton()),
|
|
62
|
+
getImportButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getImportButton()),
|
|
63
|
+
getExportButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExportButton()),
|
|
64
|
+
getExportImmediatelyButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExportImmediatelyButton()),
|
|
65
|
+
getMassUpdateButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getMassUpdateButton()),
|
|
59
66
|
getUpScreenTypeButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getUpScreenTypeButton()),
|
|
60
67
|
getUpDetailSettingsButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getUpDetailSettingsButton()),
|
|
61
68
|
getUpManagePrefiltersButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getUpManagePrefiltersButton()),
|
|
@@ -63,8 +70,9 @@ export class Actionbar extends ActionbarActions {
|
|
|
63
70
|
getCubeSortButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCubeSortButton()),
|
|
64
71
|
getCubePivotSettingsButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCubePivotSettingsButton()),
|
|
65
72
|
getCubeChartSettingsButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCubeChartSettingsButton()),
|
|
66
|
-
|
|
73
|
+
getExportPivotButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExportPivotButton()),
|
|
67
74
|
getDeleteCubeViewButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getDeleteCubeViewButton()),
|
|
75
|
+
getSaveAsCubeViewButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getSaveAsCubeViewButton()),
|
|
68
76
|
getCollapseAllButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getCollapseAllButton()),
|
|
69
77
|
getExpandAllButton: () => wrapWithOverflowOpen(this, () => this._overflowMenu.getExpandAllButton())
|
|
70
78
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Actionbar.js","sourceRoot":"","sources":["../../../components/actionbar/Actionbar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,4BAA4B,EAAE,MAAM,uBAAuB,CAAC;AAEvF,MAAM,gBAAgB;IAGpB,YAAY,IAAU,EAAE,UAA0B,IAAI;QAI/C,
|
|
1
|
+
{"version":3,"file":"Actionbar.js","sourceRoot":"","sources":["../../../components/actionbar/Actionbar.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,23 +2,24 @@ import type { Locator, Page } from '@playwright/test';
|
|
|
2
2
|
import { BaseComponentObjects } from '../BaseComponentObjects.js';
|
|
3
3
|
export declare class ActionbarOverflowableObjects extends BaseComponentObjects {
|
|
4
4
|
constructor(page: Page, context?: Locator | null);
|
|
5
|
+
searchInput: () => Locator;
|
|
6
|
+
prefilterButton: () => Locator;
|
|
7
|
+
filterButton: () => Locator;
|
|
5
8
|
addButton: () => Locator;
|
|
6
|
-
cancelButton: () => Locator;
|
|
7
9
|
copyButton: () => Locator;
|
|
10
|
+
updateButton: () => Locator;
|
|
8
11
|
deleteButton: () => Locator;
|
|
9
|
-
refreshButton: () => Locator;
|
|
10
12
|
saveButton: () => Locator;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
exportButton: () => Locator;
|
|
14
|
-
importButton: () => Locator;
|
|
15
|
-
exportImmediatelyButton: () => Locator;
|
|
16
|
-
massUpdateButton: () => Locator;
|
|
13
|
+
cancelButton: () => Locator;
|
|
14
|
+
refreshButton: () => Locator;
|
|
17
15
|
quickFilterButton: () => Locator;
|
|
18
|
-
filterButton: () => Locator;
|
|
19
16
|
clearAllFiltersButton: () => Locator;
|
|
20
|
-
restoreSortOrderButton: () => Locator;
|
|
21
17
|
sortButton: () => Locator;
|
|
18
|
+
restoreSortOrderButton: () => Locator;
|
|
19
|
+
importButton: () => Locator;
|
|
20
|
+
exportButton: () => Locator;
|
|
21
|
+
exportImmediatelyButton: () => Locator;
|
|
22
|
+
massUpdateButton: () => Locator;
|
|
22
23
|
upScreenTypeButton: () => Locator;
|
|
23
24
|
upDetailSettingsButton: () => Locator;
|
|
24
25
|
upManagePrefiltersButton: () => Locator;
|
|
@@ -26,10 +27,21 @@ export declare class ActionbarOverflowableObjects extends BaseComponentObjects {
|
|
|
26
27
|
cubeSortButton: () => Locator;
|
|
27
28
|
cubePivotSettingsButton: () => Locator;
|
|
28
29
|
cubeChartSettingsButton: () => Locator;
|
|
29
|
-
|
|
30
|
+
exportPivotButton: () => Locator;
|
|
30
31
|
deleteCubeViewButton: () => Locator;
|
|
32
|
+
saveAsCubeViewButton: () => Locator;
|
|
31
33
|
collapseAllButton: () => Locator;
|
|
32
34
|
expandAllButton: () => Locator;
|
|
35
|
+
taskButtons: () => Locator;
|
|
36
|
+
taskButtonById: (id: string) => Locator;
|
|
37
|
+
taskButtonByLabel: (label: string) => Locator;
|
|
38
|
+
reportButtons: () => Locator;
|
|
39
|
+
reportButtonById: (id: string) => Locator;
|
|
40
|
+
reportButtonByLabel: (label: string) => Locator;
|
|
41
|
+
cubeViewButtons: () => Locator;
|
|
42
|
+
cubeViewButtonById: (id: string) => Locator;
|
|
43
|
+
cubeViewButtonByLabel: (label: string) => Locator;
|
|
44
|
+
prefilterButtonById: (id: string) => Locator;
|
|
33
45
|
}
|
|
34
46
|
export declare class ActionbarObjects extends ActionbarOverflowableObjects {
|
|
35
47
|
constructor(page: Page, context?: Locator | null);
|
|
@@ -2,23 +2,26 @@ import { BaseComponentObjects } from '../BaseComponentObjects.js';
|
|
|
2
2
|
export class ActionbarOverflowableObjects extends BaseComponentObjects {
|
|
3
3
|
constructor(page, context = null) {
|
|
4
4
|
super(page, context);
|
|
5
|
+
// Actionbar-near
|
|
6
|
+
this.searchInput = () => this.context.getByTestId('actionbar__search__input').locator('input');
|
|
7
|
+
this.prefilterButton = () => this.context.locator('[data-testid^="prefilter-actionbar-group-"][data-testid$="-prefilter"]');
|
|
8
|
+
this.filterButton = () => this.context.getByTestId('actionbar__filter');
|
|
9
|
+
// Actionbar-far (overflowable)
|
|
5
10
|
this.addButton = () => this.context.getByTestId('actionbar__add');
|
|
6
|
-
this.cancelButton = () => this.context.getByTestId('actionbar__cancel');
|
|
7
11
|
this.copyButton = () => this.context.getByTestId('actionbar__copy');
|
|
12
|
+
this.updateButton = () => this.context.getByTestId('actionbar__update');
|
|
8
13
|
this.deleteButton = () => this.context.getByTestId('actionbar__delete');
|
|
9
|
-
this.refreshButton = () => this.context.getByTestId('actionbar__refresh');
|
|
10
14
|
this.saveButton = () => this.context.getByTestId('actionbar__save');
|
|
11
|
-
this.
|
|
12
|
-
this.
|
|
13
|
-
this.exportButton = () => this.context.getByTestId('actionbar__export');
|
|
14
|
-
this.importButton = () => this.context.getByTestId('actionbar__import');
|
|
15
|
-
this.exportImmediatelyButton = () => this.context.getByTestId('actionbar__export-immediately');
|
|
16
|
-
this.massUpdateButton = () => this.context.getByTestId('actionbar__mass-update');
|
|
15
|
+
this.cancelButton = () => this.context.getByTestId('actionbar__cancel');
|
|
16
|
+
this.refreshButton = () => this.context.getByTestId('actionbar__refresh');
|
|
17
17
|
this.quickFilterButton = () => this.context.getByTestId('actionbar__quick-filter');
|
|
18
|
-
this.filterButton = () => this.context.getByTestId('actionbar__filter');
|
|
19
18
|
this.clearAllFiltersButton = () => this.context.getByTestId('actionbar__clear-filters');
|
|
20
|
-
this.restoreSortOrderButton = () => this.context.getByTestId('actionbar__restore-sort-order');
|
|
21
19
|
this.sortButton = () => this.context.getByTestId('actionbar__sort');
|
|
20
|
+
this.restoreSortOrderButton = () => this.context.getByTestId('actionbar__restore-sort-order');
|
|
21
|
+
this.importButton = () => this.context.getByTestId('actionbar__import');
|
|
22
|
+
this.exportButton = () => this.context.getByTestId('actionbar__export');
|
|
23
|
+
this.exportImmediatelyButton = () => this.context.getByTestId('actionbar__export-immediately');
|
|
24
|
+
this.massUpdateButton = () => this.context.getByTestId('actionbar__mass-update');
|
|
22
25
|
this.upScreenTypeButton = () => this.context.getByTestId('actionbar__up-screen-type');
|
|
23
26
|
this.upDetailSettingsButton = () => this.context.getByTestId('actionbar__up-details');
|
|
24
27
|
this.upManagePrefiltersButton = () => this.context.getByTestId('actionbar__up-prefilters');
|
|
@@ -26,10 +29,26 @@ export class ActionbarOverflowableObjects extends BaseComponentObjects {
|
|
|
26
29
|
this.cubeSortButton = () => this.context.getByTestId('actionbar__cube-sort');
|
|
27
30
|
this.cubePivotSettingsButton = () => this.context.getByTestId('actionbar__pivot-settings');
|
|
28
31
|
this.cubeChartSettingsButton = () => this.context.getByTestId('actionbar__chart-settings');
|
|
29
|
-
this.
|
|
32
|
+
this.exportPivotButton = () => this.context.getByTestId('actionbar__export-pivot');
|
|
30
33
|
this.deleteCubeViewButton = () => this.context.getByTestId('actionbar__delete-cube-view');
|
|
34
|
+
this.saveAsCubeViewButton = () => this.context.getByTestId('actionbar__save-as-cube-view');
|
|
31
35
|
this.collapseAllButton = () => this.context.getByTestId('actionbar__collapse-all');
|
|
32
36
|
this.expandAllButton = () => this.context.getByTestId('actionbar__expand-all');
|
|
37
|
+
// Generic, prefix-based items: Tasks, Reports, Cube views, Prefilter buttons
|
|
38
|
+
// Tasks: data-testid like: "actionbar__task__<something>"
|
|
39
|
+
this.taskButtons = () => this.context.locator('[data-testid^="actionbar__task__"]');
|
|
40
|
+
this.taskButtonById = (id) => this.context.getByTestId(`actionbar__task__${id}`);
|
|
41
|
+
this.taskButtonByLabel = (label) => this.context.locator('[data-testid^="actionbar__task__"]').filter({ hasText: label });
|
|
42
|
+
// Reports: data-testid like "actionbar__report__<something>"
|
|
43
|
+
this.reportButtons = () => this.context.locator('[data-testid^="actionbar__report__"]');
|
|
44
|
+
this.reportButtonById = (id) => this.context.getByTestId(`actionbar__report__${id}`);
|
|
45
|
+
this.reportButtonByLabel = (label) => this.context.locator('[data-testid^="actionbar__report__"]').filter({ hasText: label });
|
|
46
|
+
// Cube views : data-testid like: "actionbar__cubeview__<something>"
|
|
47
|
+
this.cubeViewButtons = () => this.context.locator('[data-testid^="actionbar__cubeview__"]');
|
|
48
|
+
this.cubeViewButtonById = (id) => this.context.getByTestId(`actionbar__cubeview__${id}`);
|
|
49
|
+
this.cubeViewButtonByLabel = (label) => this.context.locator('[data-testid^="actionbar__cubeview__"]').filter({ hasText: label });
|
|
50
|
+
// Prefilter buttons: data-testid like: "prefilter-actionbar-group-other__<something>"
|
|
51
|
+
this.prefilterButtonById = (id) => this.context.getByTestId(new RegExp(`^prefilter-actionbar-group-${id}$`));
|
|
33
52
|
}
|
|
34
53
|
}
|
|
35
54
|
export class ActionbarObjects extends ActionbarOverflowableObjects {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ActionbarObjects.js","sourceRoot":"","sources":["../../../components/actionbar/ActionbarObjects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,4BAA6B,SAAQ,oBAAoB;IACpE,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ActionbarObjects.js","sourceRoot":"","sources":["../../../components/actionbar/ActionbarObjects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,4BAA6B,SAAQ,oBAAoB;IACpE,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAGvB,iBAAiB;QACV,gBAAW,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAE1F,oBAAe,GAAG,GAAG,EAAE,CAC5B,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,wEAAwE,CAAC,CAAC;QAE1F,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAE1E,+BAA+B;QACxB,cAAS,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;QAE7D,eAAU,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,iBAAiB,CAAC,CAAC;QAE/D,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEnE,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEnE,eAAU,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,iBAAiB,CAAC,CAAC;QAE/D,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEnE,kBAAa,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,oBAAoB,CAAC,CAAC;QAErE,sBAAiB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAAC;QAE9E,0BAAqB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAAC;QAEnF,eAAU,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,iBAAiB,CAAC,CAAC;QAE/D,2BAAsB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC;QAEzF,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEnE,iBAAY,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEnE,4BAAuB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC;QAE1F,qBAAgB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC;QAE5E,uBAAkB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAAC;QAEjF,2BAAsB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAAC;QAEjF,6BAAwB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAAC;QAEtF,yBAAoB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,oBAAoB,CAAC,CAAC;QAE5E,mBAAc,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,sBAAsB,CAAC,CAAC;QAExE,4BAAuB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAAC;QAEtF,4BAAuB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAAC;QAEtF,sBAAiB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAAC;QAE9E,yBAAoB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,6BAA6B,CAAC,CAAC;QAErF,yBAAoB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,8BAA8B,CAAC,CAAC;QAEtF,sBAAiB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAAC;QAE9E,oBAAe,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAAC;QAEjF,6EAA6E;QAC7E,0DAA0D;QACnD,gBAAW,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC;QAE/E,mBAAc,GAAG,CAAC,EAAU,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,oBAAoB,EAAE,EAAE,CAAC,CAAC;QAEpF,sBAAiB,GAAG,CAAC,KAAa,EAAE,EAAE,CAC3C,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAC;QAExF,6DAA6D;QACtD,kBAAa,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,sCAAsC,CAAC,CAAC;QAEnF,qBAAgB,GAAG,CAAC,EAAU,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,sBAAsB,EAAE,EAAE,CAAC,CAAC;QAExF,wBAAmB,GAAG,CAAC,KAAa,EAAE,EAAE,CAC7C,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,sCAAsC,CAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAC;QAE1F,oEAAoE;QAC7D,oBAAe,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,wCAAwC,CAAC,CAAC;QAEvF,uBAAkB,GAAG,CAAC,EAAU,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,wBAAwB,EAAE,EAAE,CAAC,CAAC;QAE5F,0BAAqB,GAAG,CAAC,KAAa,EAAE,EAAE,CAC/C,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,wCAAwC,CAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAC;QAE5F,sFAAsF;QAC/E,wBAAmB,GAAG,CAAC,EAAU,EAAE,EAAE,CAC1C,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,MAAM,CAAC,8BAA8B,EAAE,GAAG,CAAC,CAAC,CAAC;IA5F5E,CAAC;CA6FF;AAED,MAAM,OAAO,gBAAiB,SAAQ,4BAA4B;IAChE,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAGhB,uBAAkB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,kDAAkD,CAAC,CAAC;IAF3G,CAAC;CAGF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomActionBar.js","sourceRoot":"","sources":["../../../components/actionbar/CustomActionBar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,MAAM,OAAO,eAAgB,SAAQ,SAAS;IAC5C,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACvB,CAAC;CAGF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { CardlistObjects } from './CardlistObjects.js';
|
|
3
|
+
export declare class Cardlist {
|
|
4
|
+
cardlistObjects: CardlistObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CardlistObjects } from './CardlistObjects.js';
|
|
2
|
+
export class Cardlist {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.cardlistObjects = new CardlistObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.cardlistObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Cardlist.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Cardlist.js","sourceRoot":"","sources":["../../../components/cardlist/Cardlist.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,MAAM,OAAO,QAAQ;IAGnB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,eAAe,GAAG,IAAI,eAAe,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC5D,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC;IACtC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardlistObjects.js","sourceRoot":"","sources":["../../../components/cardlist/CardlistObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,eAAgB,SAAQ,oBAAoB;CAExD"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ChartObjects } from './ChartObjects.js';
|
|
2
|
+
export class Chart {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.chartObjects = new ChartObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.chartObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Chart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Chart.js","sourceRoot":"","sources":["../../../components/chart/Chart.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,MAAM,OAAO,KAAK;IAGhB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC;IACnC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartObjects.js","sourceRoot":"","sources":["../../../components/chart/ChartObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,YAAa,SAAQ,oBAAoB;CAErD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CombinedFIlterObjects.js","sourceRoot":"","sources":["../../../components/combined-filter/CombinedFIlterObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,qBAAsB,SAAQ,oBAAoB;CAE9D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { CombinedFilterObjects } from './CombinedFIlterObjects.js';
|
|
3
|
+
export declare class CombinedFilter {
|
|
4
|
+
combinedFilterObjects: CombinedFilterObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CombinedFilterObjects } from './CombinedFIlterObjects.js';
|
|
2
|
+
export class CombinedFilter {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.combinedFilterObjects = new CombinedFilterObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.combinedFilterObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=CombinedFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CombinedFilter.js","sourceRoot":"","sources":["../../../components/combined-filter/CombinedFilter.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,MAAM,OAAO,cAAc;IAGzB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,qBAAqB,GAAG,IAAI,qBAAqB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACxE,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC;IAC5C,CAAC;CACF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { CubeViewBarObjects } from './CubeViewBarObjects.js';
|
|
3
|
+
export declare class CubeViewBar {
|
|
4
|
+
cubeViewBarObjects: CubeViewBarObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CubeViewBarObjects } from './CubeViewBarObjects.js';
|
|
2
|
+
export class CubeViewBar {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.cubeViewBarObjects = new CubeViewBarObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.cubeViewBarObjects.context;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=CubeViewBar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CubeViewBar.js","sourceRoot":"","sources":["../../../components/cube-view-bar/CubeViewBar.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":"CubeViewBarObjects.js","sourceRoot":"","sources":["../../../components/cube-view-bar/CubeViewBarObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,kBAAmB,SAAQ,oBAAoB;CAE3D"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import type { Locator } from '@playwright/test';
|
|
2
|
-
import {
|
|
3
|
-
export declare class FilterForm
|
|
4
|
-
|
|
1
|
+
import type { Locator, Page } from '@playwright/test';
|
|
2
|
+
import { FilterFormObjects } from './FilterFormObjects.js';
|
|
3
|
+
export declare class FilterForm {
|
|
4
|
+
filterFormObjects: FilterFormObjects;
|
|
5
|
+
constructor(page: Page, context?: Locator | null);
|
|
6
|
+
get context(): Locator | null;
|
|
5
7
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export class FilterForm
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
return this.
|
|
1
|
+
import { FilterFormObjects } from './FilterFormObjects.js';
|
|
2
|
+
export class FilterForm {
|
|
3
|
+
constructor(page, context = null) {
|
|
4
|
+
this.filterFormObjects = new FilterFormObjects(page, context);
|
|
5
|
+
}
|
|
6
|
+
get context() {
|
|
7
|
+
return this.filterFormObjects.context;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
//# sourceMappingURL=FilterForm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilterForm.js","sourceRoot":"","sources":["../../../components/filter/FilterForm.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"FilterForm.js","sourceRoot":"","sources":["../../../components/filter/FilterForm.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D,MAAM,OAAO,UAAU;IAGrB,YAAY,IAAU,EAAE,UAA0B,IAAI;QACpD,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;IAED,IAAW,OAAO;QAChB,OAAO,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC;IACxC,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterFormObjects.js","sourceRoot":"","sources":["../../../components/filter/FilterFormObjects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,OAAO,iBAAkB,SAAQ,oBAAoB;CAE1D"}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export class FindForm extends BaseComponent {
|
|
3
|
-
async getLocator(context) {
|
|
4
|
-
if (context) {
|
|
5
|
-
return context.getByTestId(this.id);
|
|
6
|
-
}
|
|
7
|
-
return this.page.getByTestId(this.id);
|
|
8
|
-
}
|
|
1
|
+
export class FindForm {
|
|
9
2
|
}
|
|
10
3
|
//# sourceMappingURL=FindForm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FindForm.js","sourceRoot":"","sources":["../../../components/filter/FindForm.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FindForm.js","sourceRoot":"","sources":["../../../components/filter/FindForm.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,QAAQ;CAEpB"}
|
|
@@ -31,7 +31,10 @@ export class Grid {
|
|
|
31
31
|
* @param columnName - The name of the column for which to open the filter popup.
|
|
32
32
|
* @returns A promise that resolves when the filter popup is opened.
|
|
33
33
|
*/
|
|
34
|
-
this.openExcelStyleFilterPopup = async (columnName) =>
|
|
34
|
+
this.openExcelStyleFilterPopup = async (columnName) => {
|
|
35
|
+
const filterIcon = this._gridObjects.menuIconByColumnHeaderName(columnName);
|
|
36
|
+
await filterIcon.click({ force: true });
|
|
37
|
+
};
|
|
35
38
|
this._gridObjects = new GridObjects(page, gridContext);
|
|
36
39
|
this._page = page;
|
|
37
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Grid.js","sourceRoot":"","sources":["../../../components/grid/Grid.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE/C,MAAM,OAAO,IAAI;IAIf,YAAY,IAAU,EAAE,cAA8B,IAAI;QAK1D;;;;WAIG;QACI,0BAAqB,GAAG,CAAC,IAAY,EAAW,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAErG;;;;WAIG;QACI,kBAAa,GAAG,CAAC,QAAgB,EAAW,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;QAE7F;;;;;WAKG;QACI,kBAAa,GAAG,CAAC,YAAoB,EAAW,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;QAYrG;;;;;;;;WAQG;QACI,8BAAyB,GAAG,KAAK,EAAE,UAAkB,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"Grid.js","sourceRoot":"","sources":["../../../components/grid/Grid.ts"],"names":[],"mappings":"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"}
|