Appearance
Interface: GetValueOptions
Defined in: src/form/form.ts:8
Options for getValue. Extend wait options with an optional root element.
Extends
Properties
| Property | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|
visible? | boolean | false | Wait for the selected element to be present in DOM and to be visible. See ElementHandle.isVisible for the definition of element visibility. | WaitForSelectorOptions.visible | node_modules/.pnpm/puppeteer-core@24.37.0_typescript@5.9.3/node_modules/puppeteer-core/lib/types.d.ts:8359 |
hidden? | boolean | false | Wait for the selected element to not be found in the DOM or to be hidden. See ElementHandle.isHidden for the definition of element invisibility. | WaitForSelectorOptions.hidden | node_modules/.pnpm/puppeteer-core@24.37.0_typescript@5.9.3/node_modules/puppeteer-core/lib/types.d.ts:8367 |
timeout? | number | 30_000 (30 seconds) | Maximum time to wait in milliseconds. Pass 0 to disable timeout. The default value can be changed by using Page.setDefaultTimeout | WaitForSelectorOptions.timeout | node_modules/.pnpm/puppeteer-core@24.37.0_typescript@5.9.3/node_modules/puppeteer-core/lib/types.d.ts:8375 |
signal? | AbortSignal | undefined | A signal object that allows you to cancel a waitForSelector call. | WaitForSelectorOptions.signal | node_modules/.pnpm/puppeteer-core@24.37.0_typescript@5.9.3/node_modules/puppeteer-core/lib/types.d.ts:8379 |