v8.28.4
🚀 Improvements
Experimental Standalone API
We're happy to announce experimental support for Testplane Standalone API. You can use it as follows:
import { launchBrowser } from "testplane/unstable";
const browser = await launchBrowser();
await browser.url("https://www.google.com");
const title = await browser.getTitle();
await browser.saveScreenshot("./google.png");Note that this feature is experimental and API is subject to change without notice! We are planning on releasing stable version in the near future.