testdriverai 7.2.32 → 7.2.34
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/lib/commander.js +1 -4
- package/docs/v7/quickstart.mdx +2 -2
- package/package.json +1 -1
package/agent/lib/commander.js
CHANGED
|
@@ -235,10 +235,7 @@ commands:
|
|
|
235
235
|
timestamp: Date.now(),
|
|
236
236
|
});
|
|
237
237
|
|
|
238
|
-
|
|
239
|
-
sdk.req("ran", { command: object.command, data: object }),
|
|
240
|
-
analytics.track("command", { data: object, depth, timing }),
|
|
241
|
-
]);
|
|
238
|
+
analytics.track("command", { data: object, depth, timing });
|
|
242
239
|
|
|
243
240
|
return response;
|
|
244
241
|
};
|
package/docs/v7/quickstart.mdx
CHANGED
|
@@ -20,13 +20,13 @@ TestDriver makes it easy to write automated computer-use tests for web browsers,
|
|
|
20
20
|
You will need a TestDriver account to get an API key.
|
|
21
21
|
|
|
22
22
|
<Card
|
|
23
|
-
title="
|
|
23
|
+
title="Get an API Key"
|
|
24
24
|
icon="user-plus"
|
|
25
25
|
href="https://console.testdriver.ai/team"
|
|
26
26
|
arrow
|
|
27
27
|
horizontal
|
|
28
28
|
>
|
|
29
|
-
|
|
29
|
+
Start with 60 free device minutes, no credit-card required!
|
|
30
30
|
</Card>
|
|
31
31
|
|
|
32
32
|
</Step>
|