UNPKG

@serenity-js/webdriverio

Version:

Adapter that integrates @serenity-js/web with the latest stable version of WebdriverIO, enabling Serenity/JS reporting and using the Screenplay Pattern to write web and mobile test scenarios

15 lines 520 B
import 'webdriverio'; import type { CookieData } from '@serenity-js/web'; import { Cookie } from '@serenity-js/web'; /** * WebdriverIO-specific implementation of [`Cookie`](https://serenity-js.org/api/web/class/Cookie/). * * @group Models */ export declare class WebdriverIOCookie extends Cookie { private readonly browser; constructor(browser: WebdriverIO.Browser, cookieName: string); delete(): Promise<void>; protected read(): Promise<CookieData>; } //# sourceMappingURL=WebdriverIOCookie.d.ts.map