Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fresh/tests/deps.ts>Page#focus

The next-gen web framework.
Extremely Popular
Go to Latest
method Page.prototype.focus
Re-export
import { Page } from "https://deno.land/x/fresh@1.6.1/tests/deps.ts";

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.