Skip to content

Commit

Permalink
test: add a failing test for page.press
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Sep 6, 2020
1 parent 66985fc commit 59d3e5d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 10 additions & 0 deletions test/page-basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,16 @@ it('page.press should work', async ({page, server}) => {
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('a');
});

it('page.press should work for Enter', test => {
test.fail(options.CHROMIUM && MAC, 'page.press() does not emit keypress event on Enter');
}, async ({page, server}) => {
await page.setContent(`<input onkeypress="console.log('press')"></input>`);
const messages = [];
page.on('console', message => messages.push(message));
await page.press('input', 'Enter');
expect(messages[0].text()).toBe('press');
});

it('frame.press should work', async ({page, server}) => {
await page.setContent(`<iframe name=inner src="${server.PREFIX}/input/textarea.html"></iframe>`);
const frame = page.frame('inner');
Expand Down
8 changes: 5 additions & 3 deletions test/screencast.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ describe('screencast', suite => {
test.flaky(options.CHROMIUM && MAC);
test.flaky(options.FIREFOX);
test.flaky(options.WEBKIT);
test.fixme(options.WEBKIT && LINUX, 'Times out on bots');
}, async ({page, tmpDir, server, videoPlayer, toImpl}) => {
const videoFile = path.join(tmpDir, 'v.webm');
await page.goto(server.PREFIX + '/background-color.html#rgb(0,0,0)');
Expand Down Expand Up @@ -220,8 +221,7 @@ describe('screencast', suite => {
});

it('should capture css transformation', test => {
test.fixme(options.WEBKIT && WIN, 'Accelerated compositing is disabled in WebKit on Windows.');
test.flaky(options.WEBKIT && LINUX);
test.fixme(options.WEBKIT && LINUX, 'Times out on bots');
}, async ({page, tmpDir, server, videoPlayer, toImpl}) => {
const videoFile = path.join(tmpDir, 'v.webm');
// Set viewport equal to screencast frame size to avoid scaling.
Expand Down Expand Up @@ -303,7 +303,9 @@ describe('screencast', suite => {
await browser.close();
});

it('should scale frames down to the requested size ', async ({page, videoPlayer, tmpDir, server, toImpl}) => {
it('should scale frames down to the requested size ', test => {
test.fixme(options.WEBKIT && LINUX, 'Times out on bots');
}, async ({page, videoPlayer, tmpDir, server, toImpl}) => {
await page.setViewportSize({width: 640, height: 480});
const videoFile = path.join(tmpDir, 'v.webm');
await page.goto(server.PREFIX + '/checkerboard.html');
Expand Down

0 comments on commit 59d3e5d

Please sign in to comment.