Skip to main content

Function: goto()

Call Signature​

goto(url): Promise<void>

Defined in: testRunnerAdapter.ts:17

Navigate the current Playwright page to the provided URL.

Parameters​

url​

string

Destination URL to load.

Returns​

Promise<void>

Call Signature​

goto(url, fixture): Promise<void>

Defined in: testRunnerAdapter.ts:18

Navigate the current Playwright page to the provided URL.

Parameters​

url​

string

Destination URL to load.

fixture​

E2eTestRunEnvironmentFixture

Optional test fixture supplying the Playwright page.

Returns​

Promise<void>