Latest
interface WaitForSelectorOptions
import { type WaitForSelectorOptions } from "https://dotland.deno.dev/x/puppeteer@16.2.0/vendor/puppeteer-core/puppeteer/common/IsolatedWorld.js";

Properties

optional
visible: boolean

Wait for the selected element to be present in DOM and to be visible, i.e. to not have display: none or visibility: hidden CSS properties.

optional
hidden: boolean

Wait for the selected element to not be found in the DOM or to be hidden, i.e. have display: none or visibility: hidden CSS properties.

optional
timeout: number

Maximum time to wait in milliseconds. Pass 0 to disable timeout.

The default value can be changed by using {@link Page.setDefaultTimeout}

optional
deprecated
root: ElementHandle<any>