2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.uploadFile
---
# ElementHandle.uploadFile() method
2023-04-21 12:15:19 +00:00
Sets the value of an [input element ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input ) to the given file paths.
2022-07-05 13:41:43 +00:00
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ElementHandle {
uploadFile(
this: ElementHandle< HTMLInputElement > ,
2023-04-21 12:15:19 +00:00
...paths: string[]
2022-07-05 13:41:43 +00:00
): Promise< void > ;
}
```
## Parameters
2023-04-21 12:15:19 +00:00
| Parameter | Type | Description |
| --------- | --------------------------------------------------------------------- | ----------- |
| this | [ElementHandle ](./puppeteer.elementhandle.md )< HTMLInputElement> | |
| paths | string\[\] | |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>
2023-04-21 12:15:19 +00:00
## Remarks
This will not validate whether the file paths exists. Also, if a path is relative, then it is resolved against the [current working directory ](https://nodejs.org/api/process.html#process_process_cwd ). For locals script connecting to remote chrome environments, paths must be absolute.