UNPKG

cypress-cucumber-steps

Version:
33 lines 641 B
/** * Then I see option: * * ```gherkin * Then I see option {string} * ``` * * Assert option with text **_exists_** and is **_visible_** in the screen. * * @example * * ```gherkin * Then I see option "Option" * ``` */ export declare function Then_I_see_option(text: string): void; /** * Then I do not see option: * * ```gherkin * Then I do not see option {string} * ``` * * Assert option with text **_does not exist_** in the screen. * * @example * * ```gherkin * Then I do not see option "Option" * ``` */ export declare function Then_I_do_not_see_option(text: string): void; //# sourceMappingURL=option.d.ts.map