@dev-blinq/cucumber_client 1.0.1359-dev → 1.0.1360-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.
|
@@ -374,6 +374,11 @@ class Examples {
|
|
|
374
374
|
return null;
|
|
375
375
|
}
|
|
376
376
|
let value = this.tableBody[0].cells[parameterIndex].value;
|
|
377
|
+
if (!value) {
|
|
378
|
+
console.warn(`Parameter ${parameterName} not found in examples table body, or it is empty`);
|
|
379
|
+
return null;
|
|
380
|
+
}
|
|
381
|
+
|
|
377
382
|
return unEscapeNonPrintables(value); // While editing in recorder, we need to remove backslashes
|
|
378
383
|
}
|
|
379
384
|
}
|