cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
58 lines • 1.37 kB
TypeScript
import { DataTable } from '@badeball/cypress-cucumber-preprocessor';
/**
* Then I see document title:
*
* ```gherkin
* Then I see document title {string}
* ```
*
* @example
*
* Assert that the `document.title` property of the page is "Title":
*
* ```gherkin
* Then I see document title "Title"
* ```
*
* With [options](https://docs.cypress.io/api/commands/title#Arguments):
*
* ```gherkin
* Then I see document title "Title"
* | log | true |
* | timeout | 4000 |
* ```
*
* @see
*
* - {@link Then_I_see_document_title_contains | Then I see document title contains}
*/
export declare function Then_I_see_document_title(title: string, options?: DataTable): void;
/**
* Then I see document title contains:
*
* ```gherkin
* Then I see document title contains {string}
* ```
*
* @example
*
* Assert that the document's title contains "Title":
*
* ```gherkin
* Then I see document title contains "Title"
* ```
*
* With [options](https://docs.cypress.io/api/commands/title#Arguments):
*
* ```gherkin
* Then I see document title contains "Title"
* | log | true |
* | timeout | 4000 |
* ```
*
* @see
*
* - {@link Then_I_see_document_title | Then I see document title}
*/
export declare function Then_I_see_document_title_contains(title: string, options?: DataTable): void;
//# sourceMappingURL=document-title.d.ts.map