| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-16 19:19:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 06:51:59 -08:00
										 |  |  | import { it, expect, folio } from './fixtures'; | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('should have default url when launching browser', async ({browserType, browserOptions, createUserDataDir}) => { | 
					
						
							|  |  |  |   const browserContext = await browserType.launchPersistentContext(await createUserDataDir(), {...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const urls = browserContext.pages().map(page => page.url()); | 
					
						
							|  |  |  |   expect(urls).toEqual(['about:blank']); | 
					
						
							|  |  |  |   await browserContext.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 16:05:58 -07:00
										 |  |  | it('headless should be able to read cookies written by headful', (test, { browserName, platform }) => { | 
					
						
							| 
									
										
										
										
											2020-08-28 13:53:47 -07:00
										 |  |  |   test.slow(); | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | }, async ({browserType, browserOptions, server, createUserDataDir}) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   // see https://github.com/microsoft/playwright/issues/717
 | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |   const userDataDir = await createUserDataDir(); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   // Write a cookie in headful chrome
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  |   const headfulContext = await browserType.launchPersistentContext(userDataDir, {...browserOptions, headless: false}); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const headfulPage = await headfulContext.newPage(); | 
					
						
							|  |  |  |   await headfulPage.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await headfulPage.evaluate(() => document.cookie = 'foo=true; expires=Fri, 31 Dec 9999 23:59:59 GMT'); | 
					
						
							|  |  |  |   await headfulContext.close(); | 
					
						
							|  |  |  |   // Read the cookie from headless chrome
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  |   const headlessContext = await browserType.launchPersistentContext(userDataDir, {...browserOptions, headless: true}); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const headlessPage = await headlessContext.newPage(); | 
					
						
							|  |  |  |   await headlessPage.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const cookie = await headlessPage.evaluate(() => document.cookie); | 
					
						
							|  |  |  |   await headlessContext.close(); | 
					
						
							|  |  |  |   expect(cookie).toBe('foo=true'); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-11 10:02:07 -07:00
										 |  |  | it('should close browser with beforeunload page', (test, parameters) => { | 
					
						
							| 
									
										
										
										
											2020-08-28 13:53:47 -07:00
										 |  |  |   test.slow(); | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | }, async ({browserType, browserOptions, server, createUserDataDir}) => { | 
					
						
							|  |  |  |   const browserContext = await browserType.launchPersistentContext(await createUserDataDir(), {...browserOptions, headless: false}); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   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(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('should not crash when creating second context', async ({browserType, browserOptions}) => { | 
					
						
							|  |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     const browserContext = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |     await browserContext.newPage(); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |     await browserContext.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const browserContext = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |     await browserContext.newPage(); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |     await browserContext.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   await browser.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('should click background tab', async ({browserType, browserOptions, server}) => { | 
					
						
							|  |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   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(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('should close browser after context menu was triggered', async ({browserType, browserOptions, server}) => { | 
					
						
							|  |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const page = await browser.newPage(); | 
					
						
							|  |  |  |   await page.goto(server.PREFIX + '/grid.html'); | 
					
						
							|  |  |  |   await page.click('body', {button: 'right'}); | 
					
						
							|  |  |  |   await browser.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('should(not) block third party cookies', async ({browserType, browserOptions, server, isChromium, isFirefox}) => { | 
					
						
							|  |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   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); | 
					
						
							| 
									
										
										
										
											2020-09-11 10:02:07 -07:00
										 |  |  |   const allowsThirdParty = isChromium || isFirefox; | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   expect(documentCookie).toBe(allowsThirdParty ? 'username=John Doe' : ''); | 
					
						
							|  |  |  |   const cookies = await page.context().cookies(server.CROSS_PROCESS_PREFIX + '/grid.html'); | 
					
						
							|  |  |  |   if (allowsThirdParty) { | 
					
						
							|  |  |  |     expect(cookies).toEqual([ | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |         'domain': '127.0.0.1', | 
					
						
							|  |  |  |         'expires': -1, | 
					
						
							|  |  |  |         'httpOnly': false, | 
					
						
							|  |  |  |         'name': 'username', | 
					
						
							|  |  |  |         'path': '/', | 
					
						
							|  |  |  |         'sameSite': 'None', | 
					
						
							|  |  |  |         'secure': false, | 
					
						
							|  |  |  |         'value': 'John Doe' | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |       } | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     expect(cookies).toEqual([]); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   await browser.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 16:05:58 -07:00
										 |  |  | it('should not override viewport size when passed null', (test, { browserName }) => { | 
					
						
							|  |  |  |   test.fixme(browserName === 'webkit'); | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | }, async function({browserType, browserOptions, server}) { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   // Our WebKit embedder does not respect window features.
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   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(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | it('Page.bringToFront should work', async ({browserType, browserOptions}) => { | 
					
						
							|  |  |  |   const browser = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const page1 = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |   await page1.setContent('Page1'); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const page2 = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |   await page2.setContent('Page2'); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   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( | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |       'visible' | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   ); | 
					
						
							|  |  |  |   await browser.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-01-22 06:51:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | const fixtures = folio.extend(); | 
					
						
							|  |  |  | fixtures.testParametersPathSegment.override(async ({ browserName, platform }, run) => { | 
					
						
							|  |  |  |   await run(browserName + '-' + platform); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | fixtures.build().it('focused input should produce the same screenshot', (test, { browserName, platform }) => { | 
					
						
							|  |  |  |   test.fail(browserName === 'firefox' && platform === 'darwin', 'headless has thinner outline'); | 
					
						
							|  |  |  |   test.fail(browserName === 'firefox' && platform === 'linux', 'headless has no outline'); | 
					
						
							|  |  |  |   test.skip(browserName === 'webkit' && platform === 'linux', 'gtk vs wpe'); | 
					
						
							| 
									
										
										
										
											2021-03-09 19:19:21 -08:00
										 |  |  |   test.skip(process.env.CRPATH); | 
					
						
							| 
									
										
										
										
											2021-01-22 06:51:59 -08:00
										 |  |  | }, async ({browserType, browserOptions}) => { | 
					
						
							|  |  |  |   const headful = await browserType.launch({...browserOptions, headless: false }); | 
					
						
							|  |  |  |   const headfulPage = await headful.newPage(); | 
					
						
							|  |  |  |   await headfulPage.setContent('<input>'); | 
					
						
							|  |  |  |   await headfulPage.focus('input'); | 
					
						
							|  |  |  |   const headfulScreenshot = await headfulPage.screenshot(); | 
					
						
							|  |  |  |   await headful.close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const headless = await browserType.launch({...browserOptions, headless: true }); | 
					
						
							|  |  |  |   const headlessPage = await headless.newPage(); | 
					
						
							|  |  |  |   await headlessPage.setContent('<input>'); | 
					
						
							|  |  |  |   await headlessPage.focus('input'); | 
					
						
							|  |  |  |   const headlessScreenshot = await headlessPage.screenshot(); | 
					
						
							|  |  |  |   await headless.close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   expect(headfulScreenshot).toMatchSnapshot('focused-input.png'); | 
					
						
							|  |  |  |   expect(headlessScreenshot).toMatchSnapshot('focused-input.png'); | 
					
						
							|  |  |  | }); |