testaro 36.5.0 → 36.5.1
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/package.json +1 -1
- package/run.js +2 -2
package/package.json
CHANGED
package/run.js
CHANGED
|
@@ -1360,8 +1360,8 @@ const doActs = async (report, actIndex, page) => {
|
|
|
1360
1360
|
what = what.replace(/__[A-Z]+__/, envValue);
|
|
1361
1361
|
}
|
|
1362
1362
|
// Enter the text.
|
|
1363
|
-
await selection.type(
|
|
1364
|
-
report.jobData.presses +=
|
|
1363
|
+
await selection.type(what);
|
|
1364
|
+
report.jobData.presses += what.length;
|
|
1365
1365
|
act.result.success = true;
|
|
1366
1366
|
act.result.move = 'entered';
|
|
1367
1367
|
// If the input is a search input:
|