devtools
Version:
A Chrome DevTools protocol binding that maps WebDriver commands into Chrome DevTools commands using Puppeteer
10 lines • 454 B
TypeScript
import type DevToolsDriver from '../devtoolsdriver.js';
/**
* The Delete Session command closes any top-level browsing contexts associated
* with the current session, terminates the connection, and finally closes the current session.
*
* @alias browser.deleteSession
* @see https://w3c.github.io/webdriver/#dfn-delete-session
*/
export default function deleteSession(this: DevToolsDriver): Promise<null>;
//# sourceMappingURL=deleteSession.d.ts.map