Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
method Page.prototype.focus
import { Page } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/common/Page.js";

This method fetches an element with selector and focuses it. If there's no element matching selector, the method throws an error.

Parameters

selector: string
  • A selector of an element to focus. If there are multiple elements satisfying the selector, the first will be focused.

Returns

Promise<void>

Promise which resolves when the element matching selector is successfully focused. The promise will be rejected if there is no element matching selector.