@nice-digital/wdio-cucumber-steps
Version:
Shared step definitions for Cucumber JS BDD tests in WebdriverIO
12 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.deleteCookie = void 0;
/**
* Delete a cookie
* @param {String} name The name of the cookie to delete
*/
async function deleteCookie(name) {
await browser.deleteCookie(name);
}
exports.deleteCookie = deleteCookie;
//# sourceMappingURL=deleteCookie.js.map