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.
|
|
|
|
*/
|
|
|
|
|
2020-07-13 09:22:26 +00:00
|
|
|
import { ElementHandle } from './JSHandle.js';
|
2020-07-10 10:51:52 +00:00
|
|
|
import { Protocol } from 'devtools-protocol';
|
2020-07-13 09:22:26 +00:00
|
|
|
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 {
|
2022-06-13 09:16:25 +00:00
|
|
|
#element: ElementHandle;
|
|
|
|
#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(
|
|
|
|
element: ElementHandle,
|
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
|
|
|
}
|
|
|
|
}
|