Skip to main content

amOnPage

API

interface I {
amOnPage(url: string): Promise<void>
}

Example

import { test } from '@pw-codeceptjs/test'

test('Example', async ({ I }) => {
await I.amOnPage('https://playwright.dev')
})