Skip to content

v0.9.11

Choose a tag to compare

@github-actions github-actions released this 13 Feb 05:42
· 32 commits to main since this release
1edf719

Patch Changes

  • cde7d65: Add appiumHandler option to aiExecute for Appium-first with AI fallback

    aiExecute now accepts an optional second argument with appiumHandler. When provided, Appium runs first. If it throws, the AI prompt executes as fallback. Passes through to the native gpt-driver-node SDK support.

    // Before (still works)
    await device.gptDriver.aiExecute("tap the login button");
    
    // New: Appium-first with AI fallback
    await device.gptDriver.aiExecute("tap the login button", {
      appiumHandler: async () => {
        await device.getById("login-button").tap();
      },
    });
  • 37ba74a: Add configurable networkLogs and networkLogsOptions to BrowserStack config, allowing users to enable network log capture with request/response content