UNPKG

cypress-cucumber-steps

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