cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
48 lines • 893 B
TypeScript
/**
* When I select:
*
* ```gherkin
* When I select {string}
* ```
*
* @example
*
* ```gherkin
* When I select "Option"
* ```
*
* @remarks
*
* A preceding step like {@link When_I_get_element_by_selector | "When I get element by selector"} is required. For example:
*
* ```gherkin
* When I get element by selector "select"
* And I select "Option"
* ```
*
* @see
*
* - {@link When_I_select_option | When I select option}
*/
export declare function When_I_select(displayValue: string): void;
/**
* When I select option:
*
* ```gherkin
* When I select option {string}
* ```
*
* Select the first option by display value.
*
* @example
*
* ```gherkin
* When I select option "Option"
* ```
*
* @see
*
* - {@link When_I_select | When I select}
*/
export declare function When_I_select_option(displayValue: string): void;
//# sourceMappingURL=select.d.ts.map