Skip to content

v8.28.4

Choose a tag to compare

@shadowusr shadowusr released this 18 May 21:04
· 328 commits to master since this release

🚀 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.