UNPKG

cypress-cucumber-steps

Version:
80 lines 1.77 kB
import { DataTable } from '@badeball/cypress-cucumber-preprocessor'; /** * When I uncheck: * * ```gherkin * When I uncheck * ``` * * This element must be an `<input>` with type `checkbox`. * * @example * * Uncheck checkbox(es): * * ```gherkin * When I uncheck * ``` * * With [options](https://docs.cypress.io/api/commands/uncheck#Arguments): * * ```gherkin * When I uncheck * | animationDistanceThreshold | 5 | * | log | true | * | force | false | * | scrollBehavior | top | * | timeout | 4000 | * | waitForAnimations | true | * ``` * * @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 "Checkbox" * And I uncheck * ``` * * @see * * - {@link When_I_uncheck_input | When I uncheck input} * - {@link When_I_check | When I check} */ export declare function When_I_uncheck(options?: DataTable): void; /** * When I uncheck input: * * ```gherkin * When I uncheck input {string} * ``` * * Uncheck checkbox input by label text. * * @example * * ```gherkin * When I uncheck input "Text" * ``` * * With [options](https://docs.cypress.io/api/commands/uncheck#Arguments): * * ```gherkin * When I uncheck input "Text" * | animationDistanceThreshold | 5 | * | log | true | * | force | false | * | scrollBehavior | top | * | timeout | 4000 | * | waitForAnimations | true | * | pseudoSelector | visible | * ``` * * @see * * - {@link When_I_uncheck | When I uncheck} * - {@link When_I_check_input | When I check input} */ export declare function When_I_uncheck_input(text: string, options?: DataTable): void; //# sourceMappingURL=uncheck.d.ts.map