Skip to main content

doubleClick

API

interface I {
doubleClick(locator: string): Promise<void>
}

Example

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

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