testdriverai 5.7.0 → 5.7.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/agent.js +4 -7
- package/package.json +1 -1
- package/testdriver/overwrite.yaml +25 -0
package/agent.js
CHANGED
|
@@ -849,7 +849,6 @@ const firstPrompt = async () => {
|
|
|
849
849
|
const flags = commands.slice(2);
|
|
850
850
|
let shouldSave = flags.includes("--save") ? true : false;
|
|
851
851
|
let shouldExit = flags.includes("--exit") ? true : false;
|
|
852
|
-
|
|
853
852
|
await run(file, shouldSave, shouldExit);
|
|
854
853
|
} else if (input.indexOf("/generate") == 0) {
|
|
855
854
|
const skipYaml = commands[4] === "--skip-yaml";
|
|
@@ -1092,12 +1091,10 @@ let run = async (file = thisFile, shouldSave = false, shouldExit = true) => {
|
|
|
1092
1091
|
logger.info(``, null);
|
|
1093
1092
|
logger.info(chalk.yellow(`> ${step.prompt || "no prompt"}`), null);
|
|
1094
1093
|
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
});
|
|
1100
|
-
}
|
|
1094
|
+
executionHistory.push({
|
|
1095
|
+
prompt: step.prompt,
|
|
1096
|
+
commands: [], // run will overwrite the commands
|
|
1097
|
+
});
|
|
1101
1098
|
|
|
1102
1099
|
if (!step.commands && !step.prompt) {
|
|
1103
1100
|
logger.info(chalk.red("No commands or prompt found"));
|
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
version: 5.7.0
|
|
2
|
+
session: 682a077a1e7bdbd8dadde32f
|
|
3
|
+
steps:
|
|
4
|
+
- prompt: open chrome
|
|
5
|
+
commands:
|
|
6
|
+
- command: press-keys
|
|
7
|
+
keys:
|
|
8
|
+
- command
|
|
9
|
+
- space
|
|
10
|
+
- command: type
|
|
11
|
+
text: Google Chrome
|
|
12
|
+
- command: press-keys
|
|
13
|
+
keys:
|
|
14
|
+
- enter
|
|
15
|
+
- prompt: search for youtube
|
|
16
|
+
commands:
|
|
17
|
+
- command: press-keys
|
|
18
|
+
keys:
|
|
19
|
+
- command
|
|
20
|
+
- space
|
|
21
|
+
- command: type
|
|
22
|
+
text: Google Chrome
|
|
23
|
+
- command: press-keys
|
|
24
|
+
keys:
|
|
25
|
+
- enter
|