From 67cd5698a70b9c8f0abe75ced35be26cf0f102a9 Mon Sep 17 00:00:00 2001 From: Arjun Attam Date: Thu, 16 Apr 2020 12:48:16 -0700 Subject: [PATCH] docs: typo fix --- docs/upload-download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upload-download.md b/docs/upload-download.md index 398716553ecb1..556580cc31ad4 100644 --- a/docs/upload-download.md +++ b/docs/upload-download.md @@ -8,7 +8,7 @@ await page.setInputFiles('input#upload', 'myfile.pdf'); ``` -You can select input files for upload using the `page.setInputFiles` method. It expects first arcument to point to an [input element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) with the type `"file"`. Multiple files can be passed in the array. If some of the file paths are relative, they are resolved relative to the [current working directory](https://nodejs.org/api/process.html#process_process_cwd). Empty array clears the selected files. +You can select input files for upload using the `page.setInputFiles` method. It expects first argument to point to an [input element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) with the type `"file"`. Multiple files can be passed in the array. If some of the file paths are relative, they are resolved relative to the [current working directory](https://nodejs.org/api/process.html#process_process_cwd). Empty array clears the selected files. #### Variations