testdriverai 4.1.29 → 4.1.32
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/README.md +2 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# TestDriver.ai
|
|
4
4
|
|
|
5
|
-
Next generation autonomous AI agent for end-to-end testing of web & desktop
|
|
5
|
+
Automate and scale QA with agentic users. Next generation autonomous AI agent for end-to-end testing of web & desktop.
|
|
6
6
|
|
|
7
7
|
[Docs](https://docs.testdriver.ai) | [Website](https://testdriver.ai) | [GitHub Action](https://github.com/marketplace/actions/testdriver-ai) | [Join our Discord](https://discord.gg/a8Cq739VWn)
|
|
8
8
|
|
|
@@ -55,19 +55,9 @@ Install testdriverai via NPM. This will make testdriverai available as a global
|
|
|
55
55
|
npm install testdriverai -g
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
## Set up the project
|
|
59
|
-
|
|
60
|
-
In the root of the project you want to test, run `testdriverai init`. This will authorize you to communicate with our API and set up example GitHub runner workflows.
|
|
61
|
-
|
|
62
|
-
```sh
|
|
63
|
-
testdriverai init
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
You're almost ready to deploy your first test!
|
|
67
|
-
|
|
68
58
|
## Teach TestDriver a test
|
|
69
59
|
|
|
70
|
-
|
|
60
|
+
Let's show TestDriver what we want to test. Run the following command:
|
|
71
61
|
|
|
72
62
|
```sh
|
|
73
63
|
testdriverai .testdriver/test.yml
|
|
@@ -79,8 +69,6 @@ TestDriver best practice is to start instructing TestDriver with your app in it'
|
|
|
79
69
|
|
|
80
70
|
If you have multiple monitors, make sure you do this on your primary display.
|
|
81
71
|
|
|
82
|
-
> When deploying, the TestDriver GitHub action executes tests on ephemeral VMs. You can use a prerun script to reach this initial state automatically.
|
|
83
|
-
|
|
84
72
|
## Instruct TestDriver
|
|
85
73
|
|
|
86
74
|
Now, just tell TestDriver what you want it to do. For now, stick with single commands like "click sign up" and "scroll down."
|
|
@@ -136,10 +124,6 @@ Feel free to ask TestDriver to perform some more tasks. Every time you prompt Te
|
|
|
136
124
|
> select august 8
|
|
137
125
|
```
|
|
138
126
|
|
|
139
|
-
## Save the test
|
|
140
|
-
|
|
141
|
-
If everything worked perfectly, use the `/save` command to save the test script to the current file.
|
|
142
|
-
|
|
143
127
|
If something didn't work, you can use `/undo` to remove all of the test steps added since the last prompt.
|
|
144
128
|
|
|
145
129
|
## Test the test locally
|