UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

17 lines (13 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = deleteAllCookies; async function deleteAllCookies() { const page = this.getPageHandle(); const cookies = await page.cookies(); for (const cookie of cookies) { await page.deleteCookie(cookie); } return null; }