cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
54 lines • 1.17 kB
TypeScript
import { DataTable } from '@badeball/cypress-cucumber-preprocessor';
/**
* Then I see pathname:
*
* ```gherkin
* Then I see pathname {string}
* ```
*
* @example
*
* ```gherkin
* Then I see pathname "/pathname"
* ```
*
* With [options](https://docs.cypress.io/api/commands/location#Arguments):
*
* ```gherkin
* Then I see pathname "/pathname"
* | log | true |
* | timeout | 4000 |
* ```
*
* @see
*
* - {@link Then_I_see_pathname_contains | Then I see pathname contains}
*/
export declare function Then_I_see_pathname(pathname: string, options?: DataTable): void;
/**
* Then I see pathname contains:
*
* ```gherkin
* Then I see pathname contains {string}
* ```
*
* @example
*
* ```gherkin
* Then I see pathname contains "pathname"
* ```
*
* With [options](https://docs.cypress.io/api/commands/location#Arguments):
*
* ```gherkin
* Then I see pathname contains "pathname"
* | log | true |
* | timeout | 4000 |
* ```
*
* @see
*
* - {@link Then_I_see_pathname | Then I see pathname}
*/
export declare function Then_I_see_pathname_contains(pathname: string, options?: DataTable): void;
//# sourceMappingURL=pathname.d.ts.map