UNPKG

cypress-cucumber-steps

Version:
131 lines 2.77 kB
/** * Then I see value: * * ```gherkin * Then I see value {string} * ``` * * Assert element with exact value is **_visible_** in the screen. * * @example * * ```gherkin * Then I see value "Value" * ``` * * @remarks * * A preceding step like {@link When_I_find_input_by_label_text | "When I find input by label text"} is required. For example: * * ```gherkin * When I find input by label text "Input" * Then I see value "Value" * ``` */ export declare function Then_I_see_value(value: string): void; /** * Then I do not see value: * * ```gherkin * Then I do not see value {string} * ``` * * Assert element with exact value **_does not exist_** in the screen. * * @example * * ```gherkin * Then I do not see value "Value" * ``` * * @remarks * * A preceding step like {@link When_I_find_input_by_label_text | "When I find input by label text"} is required. For example: * * ```gherkin * When I find input by label text "Input" * Then I do not see value "Value" * ``` */ export declare function Then_I_do_not_see_value(value: string): void; /** * Then I see input value: * * ```gherkin * Then I see input value {string} * ``` * * Assert first visible input has exact value. * * @example * * ```gherkin * Then I see input value "Value" * ``` * * @see * * - {@link Then_I_see_input_value_contains | Then I see input value contains} */ export declare function Then_I_see_input_value(value: string): void; /** * Then I see input value contains: * * ```gherkin * Then I see input value contains {string} * ``` * * Assert input with partial value is **_visible_** in the screen. * * @example * * ```gherkin * Then I see input value contains "Value" * ``` * * @see * * - {@link Then_I_see_input_value | Then I see input value} */ export declare function Then_I_see_input_value_contains(value: string): void; /** * Then I see textarea value: * * ```gherkin * Then I see textarea value {string} * ``` * * Assert textarea with exact value is **_visible_** in the screen. * * @example * * ```gherkin * Then I see textarea value "Value" * ``` * * @see * * - {@link Then_I_see_textarea_value_contains | Then I see textarea value contains} */ export declare function Then_I_see_textarea_value(value: string): void; /** * Then I see textarea value contains: * * ```gherkin * Then I see textarea value contains {string} * ``` * * Assert textarea with partial value is **_visible_** in the screen. * * @example * * ```gherkin * Then I see textarea value contains "Value" * ``` * * @see * * - {@link Then_I_see_textarea_value | Then I see textarea value} */ export declare function Then_I_see_textarea_value_contains(value: string): void; //# sourceMappingURL=value.d.ts.map