mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

This patch moves fixtures.js to base.fixtures.ts that sits next to tests. All tests get an extra import to get the base fixtures (both types and implementations).
51 lines
2.2 KiB
JavaScript
51 lines
2.2 KiB
JavaScript
/**
|
|
* Copyright 2018 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.
|
|
*/
|
|
require('./base.fixture');
|
|
|
|
const utils = require('./utils');
|
|
const {FFOX, CHROMIUM, WEBKIT} = testOptions;
|
|
|
|
it('should work', async({page, server}) => {
|
|
await page.goto(server.EMPTY_PAGE);
|
|
const frame1 = await utils.attachFrame(page, 'frame1', server.EMPTY_PAGE);
|
|
const frame2 = await utils.attachFrame(page, 'frame2', server.EMPTY_PAGE);
|
|
const frame3 = await utils.attachFrame(page, 'frame3', server.EMPTY_PAGE);
|
|
const frame1handle1 = await page.$('#frame1');
|
|
const frame1handle2 = await frame1.frameElement();
|
|
const frame3handle1 = await page.$('#frame3');
|
|
const frame3handle2 = await frame3.frameElement();
|
|
expect(await frame1handle1.evaluate((a, b) => a === b, frame1handle2)).toBe(true);
|
|
expect(await frame3handle1.evaluate((a, b) => a === b, frame3handle2)).toBe(true);
|
|
expect(await frame1handle1.evaluate((a, b) => a === b, frame3handle1)).toBe(false);
|
|
});
|
|
|
|
it('should work with contentFrame', async({page, server}) => {
|
|
await page.goto(server.EMPTY_PAGE);
|
|
const frame = await utils.attachFrame(page, 'frame1', server.EMPTY_PAGE);
|
|
const handle = await frame.frameElement();
|
|
const contentFrame = await handle.contentFrame();
|
|
expect(contentFrame).toBe(frame);
|
|
});
|
|
|
|
it('should throw when detached', async({page, server}) => {
|
|
await page.goto(server.EMPTY_PAGE);
|
|
const frame1 = await utils.attachFrame(page, 'frame1', server.EMPTY_PAGE);
|
|
await page.$eval('#frame1', e => e.remove());
|
|
const error = await frame1.frameElement().catch(e => e);
|
|
expect(error.message).toContain('Frame has been detached.');
|
|
});
|