puppeteer/website/versioned_docs/version-19.8.2/api/puppeteer.frame.focus.md
release-please[bot] 8d026042db
chore: release main (#9939)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2023-03-29 11:22:11 +00:00

482 B

sidebar_label
Frame.focus

Frame.focus() method

Focuses the first element that matches the selector.

Signature:

class Frame {
  focus(selector: string): Promise<void>;
}

Parameters

Parameter Type Description
selector string The selector to query for.

Returns:

Promise<void>

Exceptions

Throws if there's no element matching selector.