Taiko
Documentation

Home

api reference

Index of Taiko's API. You can use them in Taiko's recorder as well as scripts. Use the API in Taiko's recorder as follows
> openBrowser()
In your test scripts you need to import the API
const { openBrowser, goto, click } = require('taiko')
Before using it
(async () => {
    await openBrowser();
    await goto('google.com');
    await click('Google search');
})();

Browser actions

Page actions

Selectors

Proximity selectors

Events

Helpers