testdriverai 6.0.27-canary.30c3346.0 → 6.0.27-canary.9f60cc1.0
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/docs/cli/overview.mdx
CHANGED
|
@@ -30,6 +30,7 @@ npx testdriverai@latest <command> [options]
|
|
|
30
30
|
| `--headless` | Run test without opening a browser window (useful for CI/CD environments) |
|
|
31
31
|
| `--new` | Create a new sandbox environment for the test run. |
|
|
32
32
|
| `--summary=<value>` | Output file where AI summary should be saved. |
|
|
33
|
+
| `--junit=<value>` | Output file where junit report should be saved. |
|
|
33
34
|
|
|
34
35
|
## Example usage
|
|
35
36
|
|
|
@@ -10,12 +10,12 @@ mode: "wide"
|
|
|
10
10
|
<Steps>
|
|
11
11
|
<Step title="Create a TestDriver Account">
|
|
12
12
|
|
|
13
|
-
You will need a [TestDriver Pro](https://app.testdriver.ai/team) account ($20/
|
|
13
|
+
You will need a [TestDriver Pro](https://app.testdriver.ai/team) account ($20/month) to get an API key.
|
|
14
14
|
|
|
15
15
|
<Card
|
|
16
16
|
title="Sign Up for TestDriver"
|
|
17
17
|
icon="user-plus"
|
|
18
|
-
href="https://app.testdriver.ai/
|
|
18
|
+
href="https://app.testdriver.ai/team"
|
|
19
19
|
arrow
|
|
20
20
|
horizontal
|
|
21
21
|
></Card>
|
|
@@ -46,7 +46,7 @@ mode: "wide"
|
|
|
46
46
|
Download the TestDriver GitHub repository and run the example test.
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
git clone --depth
|
|
49
|
+
git clone --depth 1 https://github.com/testdriverai/cli testdriverai
|
|
50
50
|
cd testdriverai/testdriver/acceptance
|
|
51
51
|
```
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ steps:
|
|
|
6
6
|
- command: exec
|
|
7
7
|
lang: pwsh
|
|
8
8
|
code: |
|
|
9
|
-
Start-Process "C:\Program Files\Google\Chrome\Application\chrome.exe" -ArgumentList "--start-maximized --disable-infobars --disable-fre --no-default-browser-check --no-first-run --guest --load-extension=$(pwd)/node_modules/dashcam-chrome/build", "
|
|
9
|
+
Start-Process "C:\Program Files\Google\Chrome\Application\chrome.exe" -ArgumentList "--start-maximized --disable-infobars --disable-fre --no-default-browser-check --no-first-run --guest --load-extension=$(pwd)/node_modules/dashcam-chrome/build", "https://testdriver-sandbox.vercel.app/"
|
|
10
10
|
- command: wait-for-text
|
|
11
11
|
text: ${TD_WEBSITE}
|
|
12
12
|
timeout: 60000
|