2020-10-20 07:06:06 +03:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-05-06 17:08:22 +03:00
|
|
|
import { test as it, expect } from './pageTest';
|
2020-10-20 07:06:06 +03:00
|
|
|
|
2022-09-07 21:09:22 +03:00
|
|
|
it.skip(({ isWebView2 }) => isWebView2, 'Page.close() is not supported in WebView2');
|
|
|
|
|
2021-09-27 19:58:08 +03:00
|
|
|
it('should close page with active dialog', async ({ page }) => {
|
2020-10-20 07:06:06 +03:00
|
|
|
await page.setContent(`<button onclick="setTimeout(() => alert(1))">alert</button>`);
|
2023-11-02 02:36:39 +03:00
|
|
|
void page.click('button').catch(() => {});
|
2020-10-20 07:06:06 +03:00
|
|
|
await page.waitForEvent('dialog');
|
|
|
|
await page.close();
|
|
|
|
});
|
2020-10-20 18:55:01 +03:00
|
|
|
|
2023-09-28 00:09:56 +03:00
|
|
|
it('should not accept dialog after close', async ({ page, mode }) => {
|
2023-07-31 21:24:04 +03:00
|
|
|
it.fixme(mode.startsWith('service2'), 'Times out');
|
2023-09-28 00:09:56 +03:00
|
|
|
const promise = page.waitForEvent('dialog');
|
2020-11-03 00:06:54 +03:00
|
|
|
page.evaluate(() => alert()).catch(() => {});
|
2023-09-28 00:09:56 +03:00
|
|
|
const dialog = await promise;
|
2020-11-03 00:06:54 +03:00
|
|
|
await page.close();
|
|
|
|
const e = await dialog.dismiss().catch(e => e);
|
|
|
|
expect(e.message).toContain('Target page, context or browser has been closed');
|
|
|
|
});
|