v0.9.11
Patch Changes
-
cde7d65: Add
appiumHandleroption toaiExecutefor Appium-first with AI fallbackaiExecutenow accepts an optional second argument withappiumHandler. When provided, Appium runs first. If it throws, the AI prompt executes as fallback. Passes through to the nativegpt-driver-nodeSDK 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
networkLogsandnetworkLogsOptionsto BrowserStack config, allowing users to enable network log capture with request/response content