Function: goto()
Call Signature
goto(
url
):Promise
<void
>
Defined in: testRunnerAdapter.ts:13
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:14
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
>