UNPKG

cypress-cucumber-steps

Version:
26 lines 724 B
/** * When I set attribute: * * ```gherkin * When I set attribute {string} to {string} * ``` * * [**_GENERALLY DO NOT USE THIS AND PREFER STEPS THAT RESEMBLE HOW USERS USE YOUR SITE._**](https://testing-library.com/docs/guiding-principles/) * * @example * * ```gherkin * When I set attribute "checked" to "checked" * ``` * * @remarks * * A preceding step like {@link When_I_find_element_by_label_text | "When I find element by label text"} is required. For example: * * ```gherkin * When I find element by label text "Input" * And I set attribute "checked" to "checked" * ``` */ export declare function When_I_set_attribute(name: string, value: string): void; //# sourceMappingURL=attribute.d.ts.map