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

x/gfm/test/test_deps.ts>Page#focus

Server-side GitHub Flavored Markdown rendering for Deno
Latest
method Page.prototype.focus
Re-export
import { Page } from "https://deno.land/x/gfm@0.6.0/test/test_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.