testdriverai 7.8.0-test.62 → 7.8.0-test.63

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.
@@ -12,19 +12,8 @@ import { getDefaults } from "./config.mjs";
12
12
  describe("Scroll Test", () => {
13
13
  it("should navigate and scroll down the page", async (context) => {
14
14
  const testdriver = TestDriver(context, { ...getDefaults(context), headless: true });
15
- await testdriver.provision.chrome({ url: 'http://testdriver-sandbox.vercel.app/login' });
15
+ await testdriver.provision.chrome({ url: 'https://www.webhamster.com/' });
16
16
 
17
- // Give Chrome a moment to fully render the UI
18
- await new Promise(resolve => setTimeout(resolve, 2000));
19
-
20
- // Navigate to webhamster.com - just look for the domain, not the full path
21
- const urlBar = await testdriver.find(
22
- "testdriver-sandbox.vercel.app, the URL in the address bar",
23
- );
24
- await urlBar.click();
25
- await testdriver.pressKeys(["ctrl", "a"]);
26
- await testdriver.type("https://www.webhamster.com/");
27
- await testdriver.pressKeys(["enter"]);
28
17
 
29
18
  // Wait for page to load and click heading
30
19
  const heading = await testdriver.find(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.8.0-test.62",
3
+ "version": "7.8.0-test.63",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",