Skip to main content
Go to Latest
class FileChooser
import { FileChooser } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/common/FileChooser.d.ts";

File choosers let you react to the page requesting for a file.

Examples

An example of using FileChooser:

const [fileChooser] = await Promise.all([
  page.waitForFileChooser(),
  page.click('#upload-file-button'), // some button that triggers file selection
]);
await fileChooser.accept(['/tmp/myfile.pdf']);

NOTE In browsers, only one file chooser can be opened at a time. All file choosers must be accepted or canceled. Not doing so will prevent subsequent file choosers from appearing.

Constructors

new
FileChooser(element: ElementHandle, event: Protocol.Page.FileChooserOpenedEvent)

Properties

private
_element
private
_handled
private
_multiple

Methods

accept(filePaths: string[]): Promise<void>

Accept the file chooser request with given paths.

cancel(): void

Closes the file chooser without selecting any files.

isMultiple(): boolean

Whether file chooser allow for multiple file selection.