2020-12-29 01:50:12 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { folio } from './cli.fixtures';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as url from 'url';
|
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const { it, describe, expect } = folio;
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
describe('cli codegen', (test, { browserName, headful }) => {
|
|
|
|
test.fixme(browserName === 'firefox' && headful, 'Focus is off');
|
|
|
|
}, () => {
|
|
|
|
it('should click', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<button onclick="console.log('click')">Submit</button>`);
|
|
|
|
|
|
|
|
const selector = await recorder.hoverOverElement('button');
|
|
|
|
expect(selector).toBe('text="Submit"');
|
|
|
|
|
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('click'),
|
|
|
|
page.dispatchEvent('button', 'click', { detail: 1 })
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="Submit"
|
|
|
|
await page.click('text="Submit"');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('click');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should not target selector preview by text regexp', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<span>dummy</span>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
// Force highlight.
|
|
|
|
await recorder.hoverOverElement('span');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
// Append text after highlight.
|
|
|
|
await page.evaluate(() => {
|
|
|
|
const div = document.createElement('div');
|
|
|
|
div.setAttribute('onclick', "console.log('click')");
|
|
|
|
div.textContent = ' Some long text here ';
|
|
|
|
document.documentElement.appendChild(div);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('div');
|
|
|
|
expect(selector).toBe('text=/.*Some long text here.*/');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
// Sanity check that selector does not match our highlight.
|
|
|
|
const divContents = await page.$eval(selector, div => div.outerHTML);
|
|
|
|
expect(divContents).toBe(`<div onclick="console.log('click')"> Some long text here </div>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('click'),
|
|
|
|
page.dispatchEvent('div', 'click', { detail: 1 })
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text=/.*Some long text here.*/
|
|
|
|
await page.click('text=/.*Some long text here.*/');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('click');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should fill', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="input" name="name" oninput="console.log(input.value)"></input>`);
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="name"]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('fill'),
|
|
|
|
page.fill('input', 'John')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Fill input[name="name"]
|
|
|
|
await page.fill('input[name="name"]', 'John');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('John');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should fill textarea', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<textarea id="textarea" name="name" oninput="console.log(textarea.value)"></textarea>`);
|
|
|
|
const selector = await recorder.focusElement('textarea');
|
|
|
|
expect(selector).toBe('textarea[name="name"]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('fill'),
|
|
|
|
page.fill('textarea', 'John')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Fill textarea[name="name"]
|
|
|
|
await page.fill('textarea[name="name"]', 'John');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('John');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should press', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input name="name" onkeypress="console.log('press')"></input>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="name"]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const messages: any[] = [];
|
2020-12-29 20:59:35 +03:00
|
|
|
page.on('console', message => messages.push(message));
|
2020-12-29 04:39:30 +03:00
|
|
|
await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
recorder.waitForOutput('press'),
|
|
|
|
page.press('input', 'Shift+Enter')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Press Enter with modifiers
|
|
|
|
await page.press('input[name="name"]', 'Shift+Enter');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(messages[0].text()).toBe('press');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should update selected element after pressing Tab', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<input name="one"></input>
|
|
|
|
<input name="two"></input>
|
|
|
|
`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await page.click('input[name="one"]');
|
|
|
|
await recorder.waitForOutput('click');
|
|
|
|
await page.keyboard.type('foobar123');
|
|
|
|
await recorder.waitForOutput('foobar123');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await page.keyboard.press('Tab');
|
|
|
|
await recorder.waitForOutput('Tab');
|
|
|
|
await page.keyboard.type('barfoo321');
|
|
|
|
await recorder.waitForOutput('barfoo321');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Fill input[name="one"]
|
|
|
|
await page.fill('input[name="one"]', 'foobar123');`);
|
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Press Tab
|
|
|
|
await page.press('input[name="one"]', 'Tab');`);
|
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Fill input[name="two"]
|
|
|
|
await page.fill('input[name="two"]', 'barfoo321');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should record ArrowDown', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input name="name" onkeydown="console.log('press:' + event.key)"></input>`);
|
|
|
|
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="name"]');
|
|
|
|
|
|
|
|
const messages: any[] = [];
|
|
|
|
page.on('console', message => {
|
|
|
|
messages.push(message);
|
2020-12-29 20:59:35 +03:00
|
|
|
});
|
2020-12-29 04:39:30 +03:00
|
|
|
await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
recorder.waitForOutput('press'),
|
|
|
|
page.press('input', 'ArrowDown')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Press ArrowDown
|
|
|
|
await page.press('input[name="name"]', 'ArrowDown');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(messages[0].text()).toBe('press:ArrowDown');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should emit single keyup on ArrowDown', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input name="name" onkeydown="console.log('down:' + event.key)" onkeyup="console.log('up:' + event.key)"></input>`);
|
|
|
|
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="name"]');
|
|
|
|
|
|
|
|
const messages: any[] = [];
|
|
|
|
page.on('console', message => {
|
|
|
|
messages.push(message);
|
2020-12-29 20:59:35 +03:00
|
|
|
});
|
2020-12-29 04:39:30 +03:00
|
|
|
await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
recorder.waitForOutput('press'),
|
|
|
|
page.press('input', 'ArrowDown')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Press ArrowDown
|
|
|
|
await page.press('input[name="name"]', 'ArrowDown');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(messages.length).toBe(2);
|
|
|
|
expect(messages[0].text()).toBe('down:ArrowDown');
|
|
|
|
expect(messages[1].text()).toBe('up:ArrowDown');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should check', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="console.log(checkbox.checked)"></input>`);
|
|
|
|
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="accept"]');
|
|
|
|
|
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('check'),
|
|
|
|
page.click('input')
|
|
|
|
]);
|
|
|
|
await recorder.waitForOutput('check');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Check input[name="accept"]
|
|
|
|
await page.check('input[name="accept"]');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('true');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should check with keyboard', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="console.log(checkbox.checked)"></input>`);
|
|
|
|
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="accept"]');
|
|
|
|
|
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('check'),
|
|
|
|
page.keyboard.press('Space')
|
|
|
|
]);
|
|
|
|
await recorder.waitForOutput('check');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Check input[name="accept"]
|
|
|
|
await page.check('input[name="accept"]');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('true');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should uncheck', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" checked name="accept" onchange="console.log(checkbox.checked)"></input>`);
|
|
|
|
|
|
|
|
const selector = await recorder.focusElement('input');
|
|
|
|
expect(selector).toBe('input[name="accept"]');
|
|
|
|
|
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('uncheck'),
|
|
|
|
page.click('input')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Uncheck input[name="accept"]
|
|
|
|
await page.uncheck('input[name="accept"]');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('false');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should select', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait('<select id="age" onchange="console.log(age.selectedOptions[0].value)"><option value="1"><option value="2"></select>');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('select');
|
|
|
|
expect(selector).toBe('select[id="age"]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const [message] = await Promise.all([
|
|
|
|
page.waitForEvent('console'),
|
|
|
|
recorder.waitForOutput('select'),
|
|
|
|
page.selectOption('select', '2')
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Select 2
|
|
|
|
await page.selectOption('select[id="age"]', '2');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(message.text()).toBe('2');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should await popup', (test, { browserName, headful }) => {
|
|
|
|
test.fixme(browserName === 'webkit' && headful, 'Middle click does not open a popup in our webkit embedder');
|
|
|
|
}, async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait('<a target=_blank rel=noopener href="about:blank">link</a>');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('a');
|
|
|
|
expect(selector).toBe('text="link"');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const [popup] = await Promise.all([
|
|
|
|
page.context().waitForEvent('page'),
|
|
|
|
recorder.waitForOutput('waitForEvent'),
|
|
|
|
page.dispatchEvent('a', 'click', { detail: 1 })
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="link"
|
|
|
|
const [page1] = await Promise.all([
|
|
|
|
page.waitForEvent('popup'),
|
|
|
|
page.click('text="link"')
|
|
|
|
]);`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(popup.url()).toBe('about:blank');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should assert navigation', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<a onclick="window.location.href='about:blank#foo'">link</a>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('a');
|
|
|
|
expect(selector).toBe('text="link"');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await Promise.all([
|
|
|
|
page.waitForNavigation(),
|
|
|
|
recorder.waitForOutput('assert'),
|
|
|
|
page.dispatchEvent('a', 'click', { detail: 1 })
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="link"
|
|
|
|
await page.click('text="link"');
|
|
|
|
// assert.equal(page.url(), 'about:blank#foo');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(page.url()).toContain('about:blank#foo');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should await navigation', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<a onclick="setTimeout(() => window.location.href='about:blank#foo', 1000)">link</a>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('a');
|
|
|
|
expect(selector).toBe('text="link"');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await Promise.all([
|
|
|
|
page.waitForNavigation(),
|
|
|
|
recorder.waitForOutput('waitForNavigation'),
|
|
|
|
page.dispatchEvent('a', 'click', { detail: 1 })
|
|
|
|
]);
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="link"
|
|
|
|
await Promise.all([
|
|
|
|
page.waitForNavigation(/*{ url: 'about:blank#foo' }*/),
|
|
|
|
page.click('text="link"')
|
|
|
|
]);`);
|
2020-12-29 04:39:30 +03:00
|
|
|
expect(page.url()).toContain('about:blank#foo');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should contain open page', async ({ recorder }) => {
|
|
|
|
await recorder.setContentAndWait(``);
|
|
|
|
expect(recorder.output()).toContain(`const page = await context.newPage();`);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should contain second page', async ({ contextWrapper, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(``);
|
|
|
|
await contextWrapper.context.newPage();
|
|
|
|
await recorder.waitForOutput('page1');
|
|
|
|
expect(recorder.output()).toContain('const page1 = await context.newPage();');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should contain close page', async ({ contextWrapper, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(``);
|
|
|
|
await contextWrapper.context.newPage();
|
|
|
|
await recorder.page.close();
|
|
|
|
await recorder.waitForOutput('page.close();');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should not lead to an error if /html gets clicked', async ({ contextWrapper, recorder }) => {
|
|
|
|
await recorder.setContentAndWait('');
|
|
|
|
await contextWrapper.context.newPage();
|
|
|
|
const errors: any[] = [];
|
|
|
|
recorder.page.on('pageerror', e => errors.push(e));
|
|
|
|
await recorder.page.evaluate(() => document.querySelector('body').remove());
|
|
|
|
const selector = await recorder.hoverOverElement('html');
|
|
|
|
expect(selector).toBe('/html');
|
|
|
|
await recorder.page.close();
|
|
|
|
await recorder.waitForOutput('page.close();');
|
|
|
|
expect(errors.length).toBe(0);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should upload a single file', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<form>
|
|
|
|
<input type="file">
|
|
|
|
</form>
|
|
|
|
`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await page.focus('input[type=file]');
|
|
|
|
await page.setInputFiles('input[type=file]', 'test/assets/file-to-upload.txt');
|
|
|
|
await page.click('input[type=file]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await recorder.waitForOutput('setInputFiles');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Upload file-to-upload.txt
|
|
|
|
await page.setInputFiles('input[type="file"]', 'file-to-upload.txt');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should upload multiple files', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<form>
|
|
|
|
<input type="file" multiple>
|
|
|
|
</form>
|
|
|
|
`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await page.focus('input[type=file]');
|
|
|
|
await page.setInputFiles('input[type=file]', ['test/assets/file-to-upload.txt', 'test/assets/file-to-upload-2.txt']);
|
|
|
|
await page.click('input[type=file]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await recorder.waitForOutput('setInputFiles');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Upload file-to-upload.txt, file-to-upload-2.txt
|
|
|
|
await page.setInputFiles('input[type="file"]', ['file-to-upload.txt', 'file-to-upload-2.txt']);`);
|
2020-12-29 04:39:30 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should clear files', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<form>
|
|
|
|
<input type="file" multiple>
|
|
|
|
</form>
|
|
|
|
`);
|
|
|
|
await page.focus('input[type=file]');
|
|
|
|
await page.setInputFiles('input[type=file]', 'test/assets/file-to-upload.txt');
|
|
|
|
await page.setInputFiles('input[type=file]', []);
|
|
|
|
await page.click('input[type=file]');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await recorder.waitForOutput('setInputFiles');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Clear selected files
|
|
|
|
await page.setInputFiles('input[type="file"]', []);`);
|
|
|
|
});
|
2020-12-29 04:39:30 +03:00
|
|
|
|
|
|
|
it('should download files', async ({ page, recorder, httpServer }) => {
|
|
|
|
httpServer.setHandler((req: http.IncomingMessage, res: http.ServerResponse) => {
|
|
|
|
const pathName = url.parse(req.url!).path;
|
|
|
|
if (pathName === '/download') {
|
|
|
|
res.setHeader('Content-Type', 'application/octet-stream');
|
|
|
|
res.setHeader('Content-Disposition', 'attachment; filename=file.txt');
|
|
|
|
res.end(`Hello world`);
|
|
|
|
} else {
|
|
|
|
res.setHeader('Content-Type', 'text/html; charset=utf-8');
|
|
|
|
res.end('');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<a href="${httpServer.PREFIX}/download" download>Download</a>
|
|
|
|
`, httpServer.PREFIX);
|
|
|
|
await recorder.hoverOverElement('text=Download');
|
|
|
|
await Promise.all([
|
|
|
|
page.waitForEvent('download'),
|
|
|
|
page.click('text=Download')
|
|
|
|
]);
|
|
|
|
await recorder.waitForOutput('page.click');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="Download"
|
|
|
|
const [download] = await Promise.all([
|
|
|
|
page.waitForEvent('download'),
|
|
|
|
page.click('text="Download"')
|
|
|
|
]);`);
|
|
|
|
});
|
2020-12-29 04:39:30 +03:00
|
|
|
|
|
|
|
it('should handle dialogs', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<button onclick="alert()">click me</button>
|
|
|
|
`);
|
|
|
|
await recorder.hoverOverElement('button');
|
|
|
|
page.once('dialog', async dialog => {
|
|
|
|
await dialog.dismiss();
|
|
|
|
});
|
|
|
|
await page.click('text="click me"');
|
|
|
|
await recorder.waitForOutput('page.once');
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="click me"
|
|
|
|
page.once('dialog', dialog => {
|
|
|
|
console.log(\`Dialog message: $\{dialog.message()}\`);
|
|
|
|
dialog.dismiss().catch(() => {});
|
|
|
|
});
|
|
|
|
await page.click('text="click me"')`);
|
2020-12-29 04:39:30 +03:00
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should handle history.postData', async ({ page, recorder, httpServer }) => {
|
|
|
|
httpServer.setHandler((req: http.IncomingMessage, res: http.ServerResponse) => {
|
|
|
|
res.setHeader('Content-Type', 'text/html; charset=utf-8');
|
|
|
|
res.end('Hello world');
|
|
|
|
});
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<script>
|
|
|
|
let seqNum = 0;
|
|
|
|
function pushState() {
|
|
|
|
history.pushState({}, 'title', '${httpServer.PREFIX}/#seqNum=' + (++seqNum));
|
|
|
|
}
|
|
|
|
</script>`, httpServer.PREFIX);
|
|
|
|
for (let i = 1; i < 3; ++i) {
|
|
|
|
await page.evaluate('pushState()');
|
|
|
|
await recorder.waitForOutput(`seqNum=${i}`);
|
|
|
|
expect(recorder.output()).toContain(`await page.goto('${httpServer.PREFIX}/#seqNum=${i}');`);
|
|
|
|
}
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should record open in a new tab with url', (test, { browserName }) => {
|
|
|
|
test.fixme(browserName === 'webkit', 'Ctrl+click does not open in new tab on WebKit');
|
|
|
|
}, async ({ page, recorder, browserName, platform }) => {
|
|
|
|
await recorder.setContentAndWait(`<a href="about:blank?foo">link</a>`);
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
const selector = await recorder.hoverOverElement('a');
|
|
|
|
expect(selector).toBe('text="link"');
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
await page.click('a', { modifiers: [ platform === 'darwin' ? 'Meta' : 'Control'] });
|
|
|
|
await recorder.waitForOutput('page1');
|
|
|
|
if (browserName === 'chromium') {
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Open new page
|
|
|
|
const page1 = await context.newPage();
|
|
|
|
page1.goto('about:blank?foo');`);
|
2020-12-29 04:39:30 +03:00
|
|
|
} else if (browserName === 'firefox') {
|
|
|
|
expect(recorder.output()).toContain(`
|
2020-12-29 01:50:12 +03:00
|
|
|
// Click text="link"
|
|
|
|
const [page1] = await Promise.all([
|
|
|
|
page.waitForEvent('popup'),
|
|
|
|
page.click('text="link"', {
|
|
|
|
modifiers: ['${platform === 'darwin' ? 'Meta' : 'Control'}']
|
|
|
|
})
|
|
|
|
]);`);
|
2020-12-29 04:39:30 +03:00
|
|
|
}
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should not clash pages', (test, { browserName }) => {
|
|
|
|
test.fixme(browserName === 'firefox', 'Times out on Firefox, maybe the focus issue');
|
|
|
|
}, async ({ page, recorder }) => {
|
|
|
|
const [popup1] = await Promise.all([
|
|
|
|
page.context().waitForEvent('page'),
|
|
|
|
page.evaluate(`window.open('about:blank')`)
|
|
|
|
]);
|
|
|
|
await recorder.setPageContentAndWait(popup1, '<input id=name>');
|
|
|
|
|
|
|
|
const [popup2] = await Promise.all([
|
|
|
|
page.context().waitForEvent('page'),
|
|
|
|
page.evaluate(`window.open('about:blank')`)
|
|
|
|
]);
|
|
|
|
await recorder.setPageContentAndWait(popup2, '<input id=name>');
|
|
|
|
|
|
|
|
await popup1.type('input', 'TextA');
|
|
|
|
await recorder.waitForOutput('TextA');
|
|
|
|
|
|
|
|
await popup2.type('input', 'TextB');
|
|
|
|
await recorder.waitForOutput('TextB');
|
|
|
|
|
|
|
|
expect(recorder.output()).toContain(`await page1.fill('input[id="name"]', 'TextA');`);
|
|
|
|
expect(recorder.output()).toContain(`await page2.fill('input[id="name"]', 'TextB');`);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('click should emit events in order', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`
|
|
|
|
<button id=button>
|
|
|
|
<script>
|
|
|
|
button.addEventListener('mousedown', e => console.log(e.type));
|
|
|
|
button.addEventListener('mouseup', e => console.log(e.type));
|
|
|
|
button.addEventListener('click', e => console.log(e.type));
|
|
|
|
</script>
|
|
|
|
`);
|
|
|
|
|
|
|
|
const messages: any[] = [];
|
|
|
|
page.on('console', message => messages.push(message.text()));
|
|
|
|
await Promise.all([
|
|
|
|
page.click('button'),
|
|
|
|
recorder.waitForOutput('page.click')
|
|
|
|
]);
|
|
|
|
expect(messages).toEqual(['mousedown', 'mouseup', 'click']);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should update hover model on action', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="checkbox.name='updated'"></input>`);
|
|
|
|
const [ models ] = await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
page.click('input')
|
|
|
|
]);
|
|
|
|
expect(models.hovered).toBe('input[name="updated"]');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should update active model on action', (test, { browserName, headful }) => {
|
|
|
|
test.fixme(browserName === 'webkit' && !headful);
|
|
|
|
test.fixme(browserName === 'firefox' && !headful);
|
|
|
|
}, async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="checkbox.name='updated'"></input>`);
|
|
|
|
const [ models ] = await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
page.click('input')
|
|
|
|
]);
|
|
|
|
expect(models.active).toBe('input[name="updated"]');
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
|
2020-12-29 04:39:30 +03:00
|
|
|
it('should check input with chaning id', async ({ page, recorder }) => {
|
|
|
|
await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="checkbox.name = 'updated'"></input>`);
|
|
|
|
await Promise.all([
|
|
|
|
recorder.waitForActionPerformed(),
|
|
|
|
page.click('input[id=checkbox]')
|
|
|
|
]);
|
|
|
|
});
|
2020-12-29 01:50:12 +03:00
|
|
|
});
|