2020-05-13 10:30:29 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2020 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
import {ElementHandle} from './JSHandle.js';
|
|
|
|
import {Protocol} from 'devtools-protocol';
|
|
|
|
import {assert} from './assert.js';
|
2020-05-13 10:30:29 +00:00
|
|
|
|
2020-06-24 10:18:53 +00:00
|
|
|
/**
|
|
|
|
* File choosers let you react to the page requesting for a file.
|
|
|
|
* @remarks
|
|
|
|
* `FileChooser` objects are returned via the `page.waitForFileChooser` method.
|
|
|
|
* @example
|
|
|
|
* An example of using `FileChooser`:
|
|
|
|
* ```js
|
|
|
|
* const [fileChooser] = await Promise.all([
|
|
|
|
* page.waitForFileChooser(),
|
|
|
|
* page.click('#upload-file-button'), // some button that triggers file selection
|
|
|
|
* ]);
|
|
|
|
* await fileChooser.accept(['/tmp/myfile.pdf']);
|
|
|
|
* ```
|
|
|
|
* **NOTE** In browsers, only one file chooser can be opened at a time.
|
|
|
|
* All file choosers must be accepted or canceled. Not doing so will prevent
|
|
|
|
* subsequent file choosers from appearing.
|
2021-04-06 08:58:01 +00:00
|
|
|
* @public
|
2020-06-24 10:18:53 +00:00
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
export class FileChooser {
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
#element: ElementHandle<HTMLInputElement>;
|
2022-06-13 09:16:25 +00:00
|
|
|
#multiple: boolean;
|
|
|
|
#handled = false;
|
2020-05-13 10:30:29 +00:00
|
|
|
|
2020-06-24 10:18:53 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
constructor(
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
element: ElementHandle<HTMLInputElement>,
|
2020-07-10 10:51:52 +00:00
|
|
|
event: Protocol.Page.FileChooserOpenedEvent
|
2020-05-13 10:30:29 +00:00
|
|
|
) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#element = element;
|
|
|
|
this.#multiple = event.mode !== 'selectSingle';
|
2020-05-13 10:30:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 10:18:53 +00:00
|
|
|
/**
|
|
|
|
* Whether file chooser allow for {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#attr-multiple | multiple} file selection.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
isMultiple(): boolean {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#multiple;
|
2020-05-13 10:30:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 10:18:53 +00:00
|
|
|
/**
|
|
|
|
* Accept the file chooser request with given paths.
|
|
|
|
* @param filePaths - If some of the `filePaths` are relative paths,
|
|
|
|
* then they are resolved relative to the {@link https://nodejs.org/api/process.html#process_process_cwd | current working directory}.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
async accept(filePaths: string[]): Promise<void> {
|
|
|
|
assert(
|
2022-06-13 09:16:25 +00:00
|
|
|
!this.#handled,
|
2020-05-13 10:30:29 +00:00
|
|
|
'Cannot accept FileChooser which is already handled!'
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#handled = true;
|
|
|
|
await this.#element.uploadFile(...filePaths);
|
2020-05-13 10:30:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 10:18:53 +00:00
|
|
|
/**
|
|
|
|
* Closes the file chooser without selecting any files.
|
|
|
|
*/
|
2021-05-12 16:43:05 +00:00
|
|
|
cancel(): void {
|
2020-05-13 10:30:29 +00:00
|
|
|
assert(
|
2022-06-13 09:16:25 +00:00
|
|
|
!this.#handled,
|
2020-05-13 10:30:29 +00:00
|
|
|
'Cannot cancel FileChooser which is already handled!'
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#handled = true;
|
2020-05-13 10:30:29 +00:00
|
|
|
}
|
|
|
|
}
|