@nocobase/plugin-workflow-test 1.0.0-alpha.13 → 1.0.0-alpha.15
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.
|
@@ -151,12 +151,13 @@ export declare class QueryRecordNode {
|
|
|
151
151
|
nodeTitle: Locator;
|
|
152
152
|
nodeConfigure: Locator;
|
|
153
153
|
collectionDropDown: Locator;
|
|
154
|
-
allowMultipleDataBoxesForResults: Locator;
|
|
155
154
|
addSortFieldsButton: Locator;
|
|
156
155
|
pageNumberEditBox: Locator;
|
|
157
156
|
pageNumberVariableButton: Locator;
|
|
158
157
|
pageSizeEditBox: Locator;
|
|
159
158
|
exitProcessOptionsBoxWithEmptyResult: Locator;
|
|
159
|
+
singleRecordRadioButton: Locator;
|
|
160
|
+
multipleRecordsRadioButton: Locator;
|
|
160
161
|
submitButton: Locator;
|
|
161
162
|
cancelButton: Locator;
|
|
162
163
|
addNodeButton: Locator;
|
|
@@ -319,12 +319,14 @@ class QueryRecordNode {
|
|
|
319
319
|
nodeTitle;
|
|
320
320
|
nodeConfigure;
|
|
321
321
|
collectionDropDown;
|
|
322
|
-
allowMultipleDataBoxesForResults;
|
|
322
|
+
// allowMultipleDataBoxesForResults: Locator;
|
|
323
323
|
addSortFieldsButton;
|
|
324
324
|
pageNumberEditBox;
|
|
325
325
|
pageNumberVariableButton;
|
|
326
326
|
pageSizeEditBox;
|
|
327
327
|
exitProcessOptionsBoxWithEmptyResult;
|
|
328
|
+
singleRecordRadioButton;
|
|
329
|
+
multipleRecordsRadioButton;
|
|
328
330
|
submitButton;
|
|
329
331
|
cancelButton;
|
|
330
332
|
addNodeButton;
|
|
@@ -334,7 +336,8 @@ class QueryRecordNode {
|
|
|
334
336
|
this.nodeTitle = page.getByLabel(`Query record-${nodeName}`, { exact: true }).getByRole("textbox");
|
|
335
337
|
this.nodeConfigure = page.getByLabel(`Query record-${nodeName}`, { exact: true }).getByRole("button", { name: "Configure" });
|
|
336
338
|
this.collectionDropDown = page.getByLabel("block-item-DataSourceCollectionCascader-workflows-Collection").locator(".ant-select-selection-search-input");
|
|
337
|
-
this.
|
|
339
|
+
this.singleRecordRadioButton = page.getByLabel("block-item-RadioWithTooltip-").getByLabel("Single record");
|
|
340
|
+
this.multipleRecordsRadioButton = page.getByLabel("block-item-RadioWithTooltip-").getByLabel("Multiple records");
|
|
338
341
|
this.addSortFieldsButton = page.getByRole("button", { name: "plus Add sort field" });
|
|
339
342
|
this.pageNumberEditBox = page.getByLabel("variable-constant");
|
|
340
343
|
this.pageNumberVariableButton = page.getByLabel("variable-button");
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "1.0.0-alpha.
|
|
12
|
-
"@nocobase/utils": "1.0.0-alpha.
|
|
11
|
+
"@nocobase/client": "1.0.0-alpha.15",
|
|
12
|
+
"@nocobase/utils": "1.0.0-alpha.15",
|
|
13
13
|
"lodash": "4.17.21",
|
|
14
|
-
"@nocobase/test": "1.0.0-alpha.
|
|
15
|
-
"@nocobase/server": "1.0.0-alpha.
|
|
16
|
-
"@nocobase/resourcer": "1.0.0-alpha.
|
|
17
|
-
"@nocobase/data-source-manager": "1.0.0-alpha.
|
|
18
|
-
"@nocobase/database": "1.0.0-alpha.
|
|
14
|
+
"@nocobase/test": "1.0.0-alpha.15",
|
|
15
|
+
"@nocobase/server": "1.0.0-alpha.15",
|
|
16
|
+
"@nocobase/resourcer": "1.0.0-alpha.15",
|
|
17
|
+
"@nocobase/data-source-manager": "1.0.0-alpha.15",
|
|
18
|
+
"@nocobase/database": "1.0.0-alpha.15"
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@nocobase/plugin-workflow-test",
|
|
3
3
|
"displayName": "Workflow: test kit",
|
|
4
4
|
"displayName.zh-CN": "工作流:测试工具包",
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.15",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
7
7
|
"main": "dist/server/index.js",
|
|
8
8
|
"types": "./dist/server/index.d.ts",
|
|
@@ -11,5 +11,5 @@
|
|
|
11
11
|
"@nocobase/server": "1.x",
|
|
12
12
|
"@nocobase/test": "1.x"
|
|
13
13
|
},
|
|
14
|
-
"gitHead": "
|
|
14
|
+
"gitHead": "2793d371368e094ea2bba04cfbe9b9b73c44edba"
|
|
15
15
|
}
|