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 {
2023-11-09 12:57:33 +00:00
abstract uploadFile(
2022-07-05 13:41:43 +00:00
this: ElementHandle< HTMLInputElement > ,
2023-04-21 12:15:19 +00:00
...paths: string[]
2022-07-05 13:41:43 +00:00
): Promise< void > ;
}
```
## Parameters
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
2022-07-05 13:41:43 +00:00
2024-03-20 15:03:14 +00:00
Parameter
< / th > < th >
Type
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
this
< / td > < td >
[ElementHandle ](./puppeteer.elementhandle.md )< HTMLInputElement>
< / td > < td >
< / td > < / tr >
< tr > < td >
paths
< / td > < td >
string\[\]
< / td > < td >
< / td > < / tr >
< / tbody > < / table >
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.