testdriverai 5.7.21 → 5.7.22
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
DiscourseEmbed = {
|
|
3
|
+
discourseUrl: 'https://forums.testdriver.ai/',
|
|
4
|
+
discourseEmbedUrl: window.location.href
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
(function() {
|
|
8
|
+
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
|
|
9
|
+
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
|
|
10
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
|
|
11
|
+
console.log('Discourse embed script loaded');
|
|
12
|
+
})();
|
|
@@ -5,6 +5,8 @@ description: "Get started with TestDriver in minutes."
|
|
|
5
5
|
icon: "gauge-high"
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
import Comments from '/snippets/comments.mdx'
|
|
9
|
+
|
|
8
10
|
TestDriver isn't just a computer-use agent, it's an entire AI-native workflow for creating end-to-end tests. Follow these steps to set up your environment and get started with TestDriver.
|
|
9
11
|
|
|
10
12
|
|
|
@@ -171,3 +173,7 @@ TestDriver can also generate tests without any input! Instead, it will suggest t
|
|
|
171
173
|
</Step>
|
|
172
174
|
|
|
173
175
|
</Steps>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<Comments />
|
package/docs/quickstart.mdx
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div id='discourse-comments'></div>
|