cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
24 lines • 499 B
TypeScript
/**
* Then I count elements:
*
* ```gherkin
* Then I count {int} elements
* ```
*
* @example
*
* Assert 10 elements are found:
*
* ```gherkin
* Then I count 10 elements
* ```
*
* A preceding step like {@link When_I_find_links_by_text | "When I find links by text"} is required. For example:
*
* ```gherkin
* When I find links by text "Link"
* Then I count 1 element
* ```
*/
export declare function Then_I_count_elements(count: number): void;
//# sourceMappingURL=count.d.ts.map