class: FileChooser
FileChooser objects are dispatched by the page in the ‘filechooser’ event.
page.on('filechooser', async (fileChooser) => {
await fileChooser.setFiles('/tmp/myfile.pdf');
});
- fileChooser.element()
- fileChooser.isMultiple()
- fileChooser.page()
- fileChooser.setFiles(files[, options])
fileChooser.element()
- returns: <ElementHandle>
Returns input element associated with this file chooser.
fileChooser.isMultiple()
- returns: <boolean>
Returns whether this file chooser accepts multiple files.
fileChooser.page()
- returns: <Page>
Returns page this file chooser belongs to.
fileChooser.setFiles(files[, options])
files
<string|Array<string>|Object|Array<Object>>options
<Object>noWaitAfter
<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse
.timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
Sets the value of the file input this chooser is associated with. If some of the filePaths
are relative paths, then they are resolved relative to the current working directory. For empty array, clears the selected files.