mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch introduces 109 "#smoke" tests - a subset of tests that makes sure that basic Playwright functionality works. This set is loosely defined; feel free to add/remove tests to the set. The only goal is to keep this set minimal & fast to run. I tried to pick tests so that various parts of Playwright functionality are exercised.
		
			
				
	
	
		
			241 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			241 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * Copyright 2018 Google Inc. All rights reserved.
 | 
						|
 *
 | 
						|
 * 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 { playwrightTest as it, expect } from './config/browserTest';
 | 
						|
 | 
						|
it('should have default url when launching browser #smoke', async ({ browserType, createUserDataDir }) => {
 | 
						|
  const browserContext = await browserType.launchPersistentContext(await createUserDataDir(), { headless: false });
 | 
						|
  const urls = browserContext.pages().map(page => page.url());
 | 
						|
  expect(urls).toEqual(['about:blank']);
 | 
						|
  await browserContext.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should close browser with beforeunload page', async ({ browserType, server, createUserDataDir }) => {
 | 
						|
  it.slow();
 | 
						|
 | 
						|
  const browserContext = await browserType.launchPersistentContext(await createUserDataDir(), { headless: false });
 | 
						|
  const page = await browserContext.newPage();
 | 
						|
  await page.goto(server.PREFIX + '/beforeunload.html');
 | 
						|
  // We have to interact with a page so that 'beforeunload' handlers
 | 
						|
  // fire.
 | 
						|
  await page.click('body');
 | 
						|
  await browserContext.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should not crash when creating second context', async ({ browserType }) => {
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  {
 | 
						|
    const browserContext = await browser.newContext();
 | 
						|
    await browserContext.newPage();
 | 
						|
    await browserContext.close();
 | 
						|
  }
 | 
						|
  {
 | 
						|
    const browserContext = await browser.newContext();
 | 
						|
    await browserContext.newPage();
 | 
						|
    await browserContext.close();
 | 
						|
  }
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should click background tab', async ({ browserType, server }) => {
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const page = await browser.newPage();
 | 
						|
  await page.setContent(`<button>Hello</button><a target=_blank href="${server.EMPTY_PAGE}">empty.html</a>`);
 | 
						|
  await page.click('a');
 | 
						|
  await page.click('button');
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should close browser after context menu was triggered', async ({ browserType, server }) => {
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const page = await browser.newPage();
 | 
						|
  await page.goto(server.PREFIX + '/grid.html');
 | 
						|
  await page.click('body', { button: 'right' });
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should(not) block third party cookies', async ({ browserType, server, browserName, browserMajorVersion }) => {
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const page = await browser.newPage();
 | 
						|
  await page.goto(server.EMPTY_PAGE);
 | 
						|
  await page.evaluate(src => {
 | 
						|
    let fulfill;
 | 
						|
    const promise = new Promise(x => fulfill = x);
 | 
						|
    const iframe = document.createElement('iframe');
 | 
						|
    document.body.appendChild(iframe);
 | 
						|
    iframe.onload = fulfill;
 | 
						|
    iframe.src = src;
 | 
						|
    return promise;
 | 
						|
  }, server.CROSS_PROCESS_PREFIX + '/grid.html');
 | 
						|
  const documentCookie = await page.frames()[1].evaluate(() => {
 | 
						|
    document.cookie = 'username=John Doe';
 | 
						|
    return document.cookie;
 | 
						|
  });
 | 
						|
  await page.waitForTimeout(2000);
 | 
						|
  const allowsThirdParty = browserName === 'firefox' && browserMajorVersion <= 95;
 | 
						|
  expect(documentCookie).toBe(allowsThirdParty ? 'username=John Doe' : '');
 | 
						|
  const cookies = await page.context().cookies(server.CROSS_PROCESS_PREFIX + '/grid.html');
 | 
						|
  if (allowsThirdParty) {
 | 
						|
    expect(cookies).toEqual([
 | 
						|
      {
 | 
						|
        'domain': '127.0.0.1',
 | 
						|
        'expires': -1,
 | 
						|
        'httpOnly': false,
 | 
						|
        'name': 'username',
 | 
						|
        'path': '/',
 | 
						|
        'sameSite': 'None',
 | 
						|
        'secure': false,
 | 
						|
        'value': 'John Doe'
 | 
						|
      }
 | 
						|
    ]);
 | 
						|
  } else {
 | 
						|
    expect(cookies).toEqual([]);
 | 
						|
  }
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should not block third party SameSite=None cookies', async ({ httpsServer, browserName, browserType }) => {
 | 
						|
  it.skip(browserName === 'webkit', 'No third party cookies in WebKit');
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const page = await browser.newPage({
 | 
						|
    ignoreHTTPSErrors: true,
 | 
						|
  });
 | 
						|
 | 
						|
  httpsServer.setRoute('/empty.html', (req, res) => {
 | 
						|
    res.writeHead(200, {
 | 
						|
      'Content-Type': 'text/html'
 | 
						|
    });
 | 
						|
    res.end(`<iframe src="${httpsServer.CROSS_PROCESS_PREFIX}/grid.html"></iframe>`);
 | 
						|
  });
 | 
						|
 | 
						|
  httpsServer.setRoute('/grid.html', (req, res) => {
 | 
						|
    res.writeHead(200, {
 | 
						|
      'Set-Cookie': ['a=b; Path=/; Max-Age=3600; SameSite=None; Secure'],
 | 
						|
      'Content-Type': 'text/html'
 | 
						|
    });
 | 
						|
    res.end(`Hello world
 | 
						|
    <script>
 | 
						|
    setTimeout(() => fetch('/json'), 1000);
 | 
						|
    </script>`);
 | 
						|
  });
 | 
						|
 | 
						|
  const cookie = new Promise(f => {
 | 
						|
    httpsServer.setRoute('/json', (req, res) => {
 | 
						|
      f(req.headers.cookie);
 | 
						|
      res.end();
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  await page.goto(httpsServer.EMPTY_PAGE);
 | 
						|
  expect(await cookie).toBe('a=b');
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('should not override viewport size when passed null', async function({ browserType, server, browserName }) {
 | 
						|
  it.fixme(browserName === 'webkit');
 | 
						|
 | 
						|
  // Our WebKit embedder does not respect window features.
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const context = await browser.newContext({ viewport: null });
 | 
						|
  const page = await context.newPage();
 | 
						|
  await page.goto(server.EMPTY_PAGE);
 | 
						|
  const [popup] = await Promise.all([
 | 
						|
    page.waitForEvent('popup'),
 | 
						|
    page.evaluate(() => {
 | 
						|
      const win = window.open(window.location.href, 'Title', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=300,top=0,left=0');
 | 
						|
      win.resizeTo(500, 450);
 | 
						|
    }),
 | 
						|
  ]);
 | 
						|
  await popup.waitForLoadState();
 | 
						|
  await popup.waitForFunction(() => window.outerWidth === 500 && window.outerHeight === 450);
 | 
						|
  await context.close();
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it('Page.bringToFront should work', async ({ browserType }) => {
 | 
						|
  const browser = await browserType.launch({ headless: false });
 | 
						|
  const page1 = await browser.newPage();
 | 
						|
  await page1.setContent('Page1');
 | 
						|
  const page2 = await browser.newPage();
 | 
						|
  await page2.setContent('Page2');
 | 
						|
 | 
						|
  await page1.bringToFront();
 | 
						|
  expect(await page1.evaluate('document.visibilityState')).toBe('visible');
 | 
						|
  expect(await page2.evaluate('document.visibilityState')).toBe('visible');
 | 
						|
 | 
						|
  await page2.bringToFront();
 | 
						|
  expect(await page1.evaluate('document.visibilityState')).toBe('visible');
 | 
						|
  expect(await page2.evaluate('document.visibilityState')).toBe(
 | 
						|
      'visible'
 | 
						|
  );
 | 
						|
  await browser.close();
 | 
						|
});
 | 
						|
 | 
						|
it.skip('should click in OOPIF', async ({ browserName, browserType, createUserDataDir, server }) => {
 | 
						|
  it.fixme(browserName === 'chromium');
 | 
						|
  server.setRoute('/empty.html', (req, res) => {
 | 
						|
    res.writeHead(200, { 'Content-Type': 'text/html' });
 | 
						|
    res.end(`<iframe src="${server.CROSS_PROCESS_PREFIX}/iframe.html"></iframe>`);
 | 
						|
  });
 | 
						|
  server.setRoute('/iframe.html', (req, res) => {
 | 
						|
    res.writeHead(200, { 'Content-Type': 'text/html' });
 | 
						|
    res.end(`<button id="button" onclick="console.log('ok')">Submit</button>
 | 
						|
    <script>console.log('frame loaded')</script>`);
 | 
						|
  });
 | 
						|
 | 
						|
  const context = await browserType.launchPersistentContext(await createUserDataDir(), { headless: false });
 | 
						|
  const [page] = context.pages();
 | 
						|
  const consoleLog: string[] = [];
 | 
						|
  page.on('console', m => consoleLog.push(m.text()));
 | 
						|
  await page.goto(server.EMPTY_PAGE);
 | 
						|
  await page.frames()[1].click('text=Submit');
 | 
						|
  expect(consoleLog).toContain('ok');
 | 
						|
});
 | 
						|
 | 
						|
it.skip('should click bottom row w/ infobar in OOPIF', async ({ browserType, createUserDataDir, server }) => {
 | 
						|
  server.setRoute('/empty.html', (req, res) => {
 | 
						|
    res.writeHead(200, { 'Content-Type': 'text/html' });
 | 
						|
    res.end(`
 | 
						|
      <style>
 | 
						|
        html, body { margin: 0; padding: 0; width: 100%; height: 100%; }
 | 
						|
        iframe { position: absolute; bottom: 0; }
 | 
						|
      </style>
 | 
						|
      <iframe src="${server.CROSS_PROCESS_PREFIX}/iframe.html"></iframe>
 | 
						|
    `);
 | 
						|
  });
 | 
						|
 | 
						|
  server.setRoute('/iframe.html', (req, res) => {
 | 
						|
    res.writeHead(200, { 'Content-Type': 'text/html' });
 | 
						|
    res.end(`
 | 
						|
      <style>
 | 
						|
        html, body { margin: 0; padding: 0; width: 100%; height: 100%; }
 | 
						|
        button { position: absolute; bottom: 0; }
 | 
						|
      </style>
 | 
						|
      <button id="button" onclick="console.log('ok')">Submit</button>`);
 | 
						|
  });
 | 
						|
 | 
						|
  const browserContext = await browserType.launchPersistentContext(await createUserDataDir(), { headless: false });
 | 
						|
  const [page] = browserContext.pages();
 | 
						|
  await page.goto(server.EMPTY_PAGE);
 | 
						|
  // Chrome bug! Investigate what's happening in the oopif router.
 | 
						|
  const consoleLog: string[] = [];
 | 
						|
  page.on('console', m => consoleLog.push(m.text()));
 | 
						|
  while (!consoleLog.includes('ok')) {
 | 
						|
    await page.waitForTimeout(100);
 | 
						|
    await page.frames()[1].click('text=Submit');
 | 
						|
  }
 | 
						|
});
 |