testdriverai 5.3.8 → 5.3.9

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.
@@ -5,7 +5,17 @@ description: "Comprehensive guide to installing and setting up TestDriver.ai for
5
5
  icon: "file-code"
6
6
  ---
7
7
 
8
- [Download VSCode Extension](https://github.com/testdriverai/vscode/actions/runs/14458583961)
8
+ # Download the VSCode Extension
9
+
10
+ The TestDriver.ai VSCode extension is available for download on our GitHub releases page. This extension integrates seamlessly with Visual Studio Code, allowing you to leverage the power of TestDriver.ai directly within your development environment.
11
+
12
+ <Card
13
+ title="Download the VSCode Extension"
14
+ icon="download"
15
+ href="https://github.com/testdriverai/vscode/releases"
16
+ >
17
+ Get the latest version of the TestDriver.ai VSCode extension from our GitHub releases page.
18
+ </Card>
9
19
 
10
20
  # Install the extension
11
21
 
@@ -18,7 +28,7 @@ icon: "file-code"
18
28
 
19
29
  # Try the Walkthrough
20
30
 
21
- The extension should launch a walkthrough. If it does not, you can manually start it by running the command `TestDriver: Start Walkthrough` from the Command Palette (`Ctrl+Shift+P`).
31
+ The extension should launch a walkthrough. If it does not, you can manually start it by running the command `TestDriver: Start Setup Walkthrough` from the Command Palette (`Ctrl+Shift+P`).
22
32
 
23
33
  ![](/images/content/vscode-walkthrough.png)
24
34
 
@@ -46,6 +46,8 @@ app.whenReady().then(() => {
46
46
  tray.setToolTip("TestDriver.ai");
47
47
  tray.setContextMenu(contextMenu);
48
48
 
49
+ app.dock?.hide();
50
+
49
51
  let windowOptions;
50
52
 
51
53
  if (config.TD_VM) {
@@ -54,13 +56,13 @@ app.whenReady().then(() => {
54
56
  height: config.TD_VM_RESOLUTION[1],
55
57
  closable: true,
56
58
  resizable: true,
59
+ // alwaysOnTop: true,
57
60
  show: false,
58
61
  webPreferences: {
59
62
  nodeIntegration: true,
60
63
  contextIsolation: false,
61
64
  },
62
65
  autoHideMenuBar: true,
63
- icon: "./icon.png",
64
66
  };
65
67
  } else {
66
68
  windowOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "5.3.8",
3
+ "version": "5.3.9",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {