Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 915 Bytes

puppeteer.filechooser.accept.md

File metadata and controls

25 lines (17 loc) · 915 Bytes
sidebar_label
FileChooser.accept

FileChooser.accept() method

Accept the file chooser request with given paths.

Signature:

class FileChooser {
  accept(filePaths: string[]): Promise<void>;
}

Parameters

Parameter Type Description
filePaths string[] If some of the filePaths are relative paths, then they are resolved relative to the current working directory.

Returns:

Promise<void>