puppeteer/website/versioned_docs/version-21.0.1/api/puppeteer.frame.focus.md
release-please[bot] 2f6870651e
chore: release main (#10680)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2023-08-03 12:19:16 +02: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.