mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-06 06:08:07 +08:00
test: workflow aggregate node e2e (#3342)
This commit is contained in:
parent
908944ce62
commit
3c87755e6c
File diff suppressed because it is too large
Load Diff
@ -377,6 +377,7 @@ export class AggregateNode {
|
|||||||
linkedDataTableDataRadio: Locator;
|
linkedDataTableDataRadio: Locator;
|
||||||
collectionDropDown: Locator;
|
collectionDropDown: Locator;
|
||||||
aggregatedFieldDropDown: Locator;
|
aggregatedFieldDropDown: Locator;
|
||||||
|
distinctCheckBox: Locator;
|
||||||
submitButton: Locator;
|
submitButton: Locator;
|
||||||
cancelButton: Locator;
|
cancelButton: Locator;
|
||||||
addNodeButton: Locator;
|
addNodeButton: Locator;
|
||||||
@ -399,6 +400,9 @@ export class AggregateNode {
|
|||||||
this.aggregatedFieldDropDown = page.locator(
|
this.aggregatedFieldDropDown = page.locator(
|
||||||
'input.ant-select-selection-search-input[role="combobox"][aria-haspopup="listbox"]',
|
'input.ant-select-selection-search-input[role="combobox"][aria-haspopup="listbox"]',
|
||||||
);
|
);
|
||||||
|
this.distinctCheckBox = page
|
||||||
|
.getByLabel('block-item-Checkbox-workflows-Distinct')
|
||||||
|
.locator('input.ant-checkbox-input[type="checkbox"]');
|
||||||
this.submitButton = page.getByLabel('action-Action-Submit-workflows');
|
this.submitButton = page.getByLabel('action-Action-Submit-workflows');
|
||||||
this.cancelButton = page.getByLabel('action-Action-Cancel-workflows');
|
this.cancelButton = page.getByLabel('action-Action-Cancel-workflows');
|
||||||
this.addNodeButton = page.getByLabel(`add-button-aggregate-${nodeName}`, { exact: true });
|
this.addNodeButton = page.getByLabel(`add-button-aggregate-${nodeName}`, { exact: true });
|
||||||
|
Loading…
Reference in New Issue
Block a user