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
:
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)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.