Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.1 KB

puppeteer.elementhandle.uploadfile.md

File metadata and controls

33 lines (23 loc) · 1.1 KB
sidebar_label
ElementHandle.uploadFile

ElementHandle.uploadFile() method

Sets the value of an input element to the given file paths.

Signature:

class ElementHandle {
  uploadFile(
    this: ElementHandle<HTMLInputElement>,
    ...paths: string[]
  ): Promise<void>;
}

Parameters

Parameter Type Description
this ElementHandle<HTMLInputElement>
paths string[]

Returns:

Promise<void>

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. For locals script connecting to remote chrome environments, paths must be absolute.