mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
329 B
Markdown
20 lines
329 B
Markdown
|
---
|
||
|
sidebar_label: FileChooser.isMultiple
|
||
|
---
|
||
|
|
||
|
# FileChooser.isMultiple() method
|
||
|
|
||
|
Whether file chooser allow for [multiple](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#attr-multiple) file selection.
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
class FileChooser {
|
||
|
isMultiple(): boolean;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
boolean
|