Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/pptr/src/FileChooser.ts>FileChooser

Headless Chrome Deno API
Latest
class FileChooser
import { FileChooser } from "https://deno.land/x/pptr@1.2.0/src/FileChooser.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: ElementHandle
private
_handled: boolean
private
_multiple: boolean

Methods

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

Accept the file chooser request with given paths.

cancel(): Promise<void>

Closes the file chooser without selecting any files.

isMultiple(): boolean

Whether file chooser allow for multiple file selection.