Skip to content

repl()

Starts a REPL when Taiko is invoked as a runner with --load option.

const { goto } = require('taiko');
const { repl } = require('taiko/recorder');
(async () => {
await goto('google.com')
await goto('google.com')
await repl();
})();
taiko --load script.js

This API does not have any parameters.

This API does not return any values.