UNPKG

@serenity-js/web

Version:

Serenity/JS Screenplay Pattern library offering a flexible, web driver-agnostic approach for interacting with web-based user interfaces and components, suitable for various testing contexts

15 lines 548 B
import { ModalDialog } from './ModalDialog'; /** * `AbsentModalDialog` is a [null object](https://en.wikipedia.org/wiki/Null_object_pattern) * representing a [`ModalDialog`](https://serenity-js.org/api/web/class/ModalDialog/) that hasn't appeared yet. * * ## Learn more * - [`ModalDialog`](https://serenity-js.org/api/web/class/ModalDialog/) * * @group Models */ export declare class AbsentModalDialog extends ModalDialog { isPresent(): Promise<boolean>; message(): Promise<string>; } //# sourceMappingURL=AbsentModalDialog.d.ts.map