2021-01-23 05:47:02 +03:00
|
|
|
/**
|
|
|
|
* 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-02-06 01:24:27 +03:00
|
|
|
|
2021-02-12 21:11:30 +03:00
|
|
|
import { expect } from 'folio';
|
2021-02-15 19:32:13 +03:00
|
|
|
import { Page } from '..';
|
2021-02-12 04:46:54 +03:00
|
|
|
import { folio } from './recorder.fixtures';
|
2021-02-12 21:11:30 +03:00
|
|
|
const { it, describe} = folio;
|
2021-01-23 05:47:02 +03:00
|
|
|
|
2021-02-06 01:24:27 +03:00
|
|
|
describe('pause', (suite, { mode }) => {
|
|
|
|
suite.skip(mode !== 'default');
|
|
|
|
}, () => {
|
2021-02-14 09:13:51 +03:00
|
|
|
it('should pause and resume the script', async ({ page, recorderPageGetter }) => {
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
2021-02-06 01:24:27 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should resume from console', async ({page}) => {
|
2021-02-14 09:13:51 +03:00
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
})();
|
2021-02-06 01:24:27 +03:00
|
|
|
await Promise.all([
|
|
|
|
page.waitForFunction(() => (window as any).playwright && (window as any).playwright.resume).then(() => {
|
|
|
|
return page.evaluate('window.playwright.resume()');
|
|
|
|
})
|
|
|
|
]);
|
2021-02-14 09:13:51 +03:00
|
|
|
await scriptPromise;
|
2021-02-06 01:24:27 +03:00
|
|
|
});
|
2021-01-23 05:47:02 +03:00
|
|
|
|
2021-02-14 09:13:51 +03:00
|
|
|
it('should pause after a navigation', async ({page, server, recorderPageGetter}) => {
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
await page.pause();
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
2021-02-06 01:24:27 +03:00
|
|
|
});
|
2021-02-12 21:11:30 +03:00
|
|
|
|
2021-02-14 09:13:51 +03:00
|
|
|
it('should show source', async ({page, recorderPageGetter}) => {
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
const source = await recorderPage.textContent('.source-line-paused .source-code');
|
2021-02-12 21:11:30 +03:00
|
|
|
expect(source).toContain('page.pause()');
|
2021-02-14 09:13:51 +03:00
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should pause on next pause', async ({page, recorderPageGetter}) => {
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause(); // 1
|
|
|
|
await page.pause(); // 2
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
const source = await recorderPage.textContent('.source-line-paused');
|
|
|
|
expect(source).toContain('page.pause(); // 1');
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-paused:has-text("page.pause(); // 2")');
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should step', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button>Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await page.click('button');
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
const source = await recorderPage.textContent('.source-line-paused');
|
|
|
|
expect(source).toContain('page.pause();');
|
|
|
|
|
|
|
|
await recorderPage.click('[title="Step over"]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-paused :has-text("page.click")');
|
|
|
|
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should highlight pointer', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button>Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await page.click('button');
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title="Step over"]');
|
|
|
|
|
|
|
|
const point = await page.waitForSelector('x-pw-action-point');
|
|
|
|
const button = await page.waitForSelector('button');
|
|
|
|
const box1 = await button.boundingBox();
|
|
|
|
const box2 = await point.boundingBox();
|
|
|
|
|
|
|
|
const x1 = box1.x + box1.width / 2;
|
|
|
|
const y1 = box1.y + box1.height / 2;
|
|
|
|
const x2 = box2.x + box2.width / 2;
|
|
|
|
const y2 = box2.y + box2.height / 2;
|
|
|
|
|
|
|
|
expect(Math.abs(x1 - x2) < 2).toBeTruthy();
|
|
|
|
expect(Math.abs(y1 - y2) < 2).toBeTruthy();
|
|
|
|
|
|
|
|
await recorderPage.click('[title="Step over"]');
|
|
|
|
await scriptPromise;
|
2021-02-12 21:11:30 +03:00
|
|
|
});
|
2021-02-15 19:32:13 +03:00
|
|
|
|
|
|
|
it('should skip input when resuming', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button>Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await page.click('button');
|
|
|
|
await page.pause(); // 2
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-paused:has-text("page.pause(); // 2")');
|
|
|
|
await recorderPage.click('[title=Resume]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should populate log', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button>Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await page.click('button');
|
|
|
|
await page.pause(); // 2
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-paused:has-text("page.pause(); // 2")');
|
|
|
|
expect(await sanitizeLog(recorderPage)).toEqual([
|
2021-02-18 09:10:13 +03:00
|
|
|
'pause- XXms',
|
|
|
|
'click(button)- XXms',
|
2021-02-15 19:32:13 +03:00
|
|
|
'pause',
|
|
|
|
]);
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should populate log with waitForEvent', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button onclick="console.log(1)">Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
page.click('button'),
|
|
|
|
]);
|
|
|
|
await page.pause(); // 2
|
|
|
|
})();
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-paused:has-text("page.pause(); // 2")');
|
|
|
|
expect(await sanitizeLog(recorderPage)).toEqual([
|
2021-02-18 09:10:13 +03:00
|
|
|
'pause- XXms',
|
|
|
|
'waitForEvent(console)- XXms',
|
|
|
|
'click(button)- XXms',
|
2021-02-15 19:32:13 +03:00
|
|
|
'pause',
|
|
|
|
]);
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await scriptPromise;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should populate log with error', async ({page, recorderPageGetter}) => {
|
|
|
|
await page.setContent('<button onclick="console.log(1)">Submit</button>');
|
|
|
|
const scriptPromise = (async () => {
|
|
|
|
await page.pause();
|
|
|
|
await page.isChecked('button');
|
|
|
|
})().catch(e => e);
|
|
|
|
const recorderPage = await recorderPageGetter();
|
|
|
|
await recorderPage.click('[title="Resume"]');
|
|
|
|
await recorderPage.waitForSelector('.source-line-error');
|
|
|
|
expect(await sanitizeLog(recorderPage)).toEqual([
|
2021-02-18 09:10:13 +03:00
|
|
|
'pause- XXms',
|
|
|
|
'isChecked(button)- XXms',
|
2021-02-15 19:32:13 +03:00
|
|
|
'checking \"checked\" state of \"button\"',
|
2021-02-18 09:10:13 +03:00
|
|
|
'selector resolved to <button onclick=\"console.log(1)\">Submit</button>',
|
2021-02-15 19:32:13 +03:00
|
|
|
'Not a checkbox or radio button',
|
|
|
|
]);
|
|
|
|
const error = await scriptPromise;
|
|
|
|
expect(error.message).toContain('Not a checkbox or radio button');
|
|
|
|
});
|
2021-01-23 05:47:02 +03:00
|
|
|
});
|
2021-02-15 19:32:13 +03:00
|
|
|
|
|
|
|
async function sanitizeLog(recorderPage: Page): Promise<string[]> {
|
2021-02-18 09:10:13 +03:00
|
|
|
const results = [];
|
|
|
|
for (const entry of await recorderPage.$$('.call-log-call')) {
|
|
|
|
const header = await (await (await entry.$('.call-log-call-header')).textContent()).replace(/— \d+(ms|s)/, '- XXms');
|
|
|
|
results.push(header);
|
|
|
|
results.push(...await entry.$$eval('.call-log-message', ee => ee.map(e => e.textContent)));
|
|
|
|
const errorElement = await entry.$('.call-log-error');
|
|
|
|
const error = errorElement ? await errorElement.textContent() : undefined;
|
|
|
|
if (error)
|
|
|
|
results.push(error);
|
|
|
|
}
|
|
|
|
return results;
|
2021-02-15 19:32:13 +03:00
|
|
|
}
|