UNPKG

cypress-cucumber-steps

Version:
142 lines 3.47 kB
import { DataTable } from '@badeball/cypress-cucumber-preprocessor'; /** * Then I see URL: * * ```gherkin * Then I see URL {string} * ``` * * @example * * With [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I see URL "/index.html" * ``` * * Without [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I see URL "http://localhost:8080/index.html" * ``` * * With [options](https://docs.cypress.io/api/commands/url#Arguments): * * ```gherkin * Then I see URL "/" * | decode | false | * | log | true | * | timeout | 4000 | * ``` * * @see * * - {@link Then_I_see_URL_contains | Then I see URL contains} */ export declare function Then_I_see_URL(url: string, options?: DataTable): void; /** * Then I see URL contains: * * ```gherkin * Then I see URL contains {string} * ``` * * @example * * With [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I see URL contains "/index.html" * ``` * * Without [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I see URL contains "http://localhost:8080/index.html" * ``` * * With [options](https://docs.cypress.io/api/commands/url#Arguments): * * ```gherkin * Then I see URL contains "/" * | decode | false | * | log | true | * | timeout | 4000 | * ``` * * @see * * - {@link Then_I_see_URL | Then I see URL} */ export declare function Then_I_see_URL_contains(url: string, options?: DataTable): void; /** * Then I do not see URL: * * ```gherkin * Then I do not see URL {string} * ``` * * @example * * With [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I do not see URL "/index.html" * ``` * * Without [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I do not see URL "http://localhost:8080/index.html" * ``` * * With [options](https://docs.cypress.io/api/commands/url#Arguments): * * ```gherkin * Then I do not see URL "/" * | decode | false | * | log | true | * | timeout | 4000 | * ``` * * @see * * - {@link Then_I_do_not_see_URL_contains | Then I do not see URL contains} */ export declare function Then_I_do_not_see_URL(url: string, options?: DataTable): void; /** * Then I do not see URL contains: * * ```gherkin * Then I do not see URL contains {string} * ``` * * @example * * With [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I do not see URL contains "/index.html" * ``` * * Without [`baseUrl`](https://docs.cypress.io/guides/references/best-practices#Setting-a-Global-baseUrl) set: * * ```gherkin * Then I do not see URL contains "http://localhost:8080/index.html" * ``` * * With [options](https://docs.cypress.io/api/commands/url#Arguments): * * ```gherkin * Then I do not see URL contains "/" * | decode | false | * | log | true | * | timeout | 4000 | * ``` * * @see * * - {@link Then_I_do_not_see_URL | Then I do not see URL} */ export declare function Then_I_do_not_see_URL_contains(url: string, options?: DataTable): void; //# sourceMappingURL=url.d.ts.map