cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
62 lines • 1.35 kB
TypeScript
import { DataTable } from '@badeball/cypress-cucumber-preprocessor';
/**
* Then I see label:
*
* ```gherkin
* Then I see label {string}
* ```
*
* Assert label with text **_exists_** and is **_visible_** in the screen.
*
* @example
*
* ```gherkin
* Then I see label "Label"
* ```
*
* With [options](https://docs.cypress.io/api/commands/get#Arguments):
*
* ```gherkin
* Then I see label "Label"
* | log | true |
* | timeout | 4000 |
* | withinSubject | null |
* | includeShadowDom | false |
* ```
*
* @see
*
* - {@link Then_I_see_text | Then I see text}
*/
export declare function Then_I_see_label(text: string, options?: DataTable): void;
/**
* Then I do not see label:
*
* ```gherkin
* Then I do not see label {string}
* ```
*
* Assert label with text **_does not exist_** in the screen.
*
* @example
*
* ```gherkin
* Then I do not see label "Label"
* ```
*
* With [options](https://docs.cypress.io/api/commands/get#Arguments):
*
* ```gherkin
* Then I do not see label "Label"
* | log | true |
* | timeout | 4000 |
* | withinSubject | null |
* | includeShadowDom | false |
* ```
*
* @see
*
* - {@link Then_I_do_not_see_text | Then I do not see text}
*/
export declare function Then_I_do_not_see_label(text: string, options?: DataTable): void;
//# sourceMappingURL=label.d.ts.map