@dev-blinq/cucumber_client 1.0.1708-dev → 1.0.1710-dev
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.
|
@@ -755,7 +755,8 @@ const _generateCodeFromCommand = (step, elements, userData) => {
|
|
|
755
755
|
}
|
|
756
756
|
case Types.CONDITIONAL_WAIT: {
|
|
757
757
|
line = `await context.web.conditionalWait(elements["${elementIdentifier}"], `;
|
|
758
|
-
|
|
758
|
+
const timeout = Number(step.parameters[0]) / 1000;
|
|
759
|
+
input = step.valueInStepText ? "_param_0" : `"${escapeNonPrintables(String(timeout))}"`;
|
|
759
760
|
line += `"${step.parameters[1]}", ${input}, _params, ${serializeOptions(options)}, this);`;
|
|
760
761
|
codeLines.push(line);
|
|
761
762
|
break;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/cucumber_client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1710-dev",
|
|
4
4
|
"description": " ",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@babel/traverse": "^7.27.1",
|
|
40
40
|
"@babel/types": "^7.27.1",
|
|
41
41
|
"@cucumber/tag-expressions": "^6.1.1",
|
|
42
|
-
"@dev-blinq/cucumber-js": "1.0.
|
|
42
|
+
"@dev-blinq/cucumber-js": "1.0.218-dev",
|
|
43
43
|
"@faker-js/faker": "^8.4.1",
|
|
44
44
|
"automation_model": "1.0.927-dev",
|
|
45
45
|
"axios": "^1.7.4",
|