webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
22 lines (20 loc) • 735 B
TypeScript
export {};
/**
* Sets up a redirect for a given mock. This allows you to redirect a request to another URL.
* Note: these redirects only apply to requests made by a script in the browser, not when calling the `url` command.
*
* <example>
:respond.js
it('redirects all my API request to my staging server', async () => {
const mock = await browser.mock('https://application.com/api/*')
mock.redirect('https://staging.application.com/api/*')
// is the same as
mock.request({ url: 'https://staging.application.com/api/*' })
// ...
})
* </example>
*
* @alias mock.request
* @param {string} url target resource to redirect requests to
*/
//# sourceMappingURL=redirect.d.ts.map