UNPKG

cypress-cucumber-steps

Version:
58 lines 1.14 kB
import { DataTable } from '@badeball/cypress-cucumber-preprocessor'; /** * Then I see hash: * * ```gherkin * Then I see hash {string} * ``` * * @example * * ```gherkin * Then I see hash "#hash" * ``` * * With [options](https://docs.cypress.io/api/commands/hash#Arguments): * * ```gherkin * Then I see hash "#hash" * | log | true | * | timeout | 4000 | * ``` * * @remarks * * The URL hash includes the `#` character. * * @see * * - {@link Then_I_see_hash_contains | Then I see hash contains} */ export declare function Then_I_see_hash(hash: string, options?: DataTable): void; /** * Then I see hash contains: * * ```gherkin * Then I see hash contains {string} * ``` * * @example * * ```gherkin * Then I see hash contains "hash" * ``` * * With [options](https://docs.cypress.io/api/commands/hash#Arguments): * * ```gherkin * Then I see hash contains "hash" * | log | true | * | timeout | 4000 | * ``` * * @see * * - {@link Then_I_see_hash | Then I see hash} */ export declare function Then_I_see_hash_contains(hash: string, options?: DataTable): void; //# sourceMappingURL=hash.d.ts.map