| 
									
										
										
										
											2020-02-11 18:52:01 -08: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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports.describe = function({testRunner, expect, playwright, CHROMIUM, WEBKIT, FFOX}) { | 
					
						
							|  |  |  |   const {describe, xdescribe, fdescribe} = testRunner; | 
					
						
							|  |  |  |   const {it, fit, xit, dit} = testRunner; | 
					
						
							|  |  |  |   const {beforeAll, beforeEach, afterAll, afterEach} = testRunner; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |   describe('Link navigation', function() { | 
					
						
							| 
									
										
										
										
											2020-03-20 15:45:20 -07:00
										 |  |  |     it('should inherit user agent from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |       const context = await browser.newContext({ | 
					
						
							|  |  |  |         userAgent: 'hey' | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel=noopener href="/popup/popup.html">link</a>'); | 
					
						
							|  |  |  |       const requestPromise = server.waitForRequest('/popup/popup.html'); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         context.waitForEvent('page'), | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |         page.click('a'), | 
					
						
							|  |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2020-03-23 13:51:11 -07:00
										 |  |  |       await popup.waitForLoadState('domcontentloaded'); | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |       const userAgent = await popup.evaluate(() => window.initialUserAgent); | 
					
						
							|  |  |  |       const request = await requestPromise; | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(userAgent).toBe('hey'); | 
					
						
							|  |  |  |       expect(request.headers['user-agent']).toBe('hey'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-22 08:56:50 -07:00
										 |  |  |     it('should respect routes from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel=noopener href="empty.html">link</a>'); | 
					
						
							|  |  |  |       let intercepted = false; | 
					
						
							| 
									
										
										
										
											2020-03-13 14:30:40 -07:00
										 |  |  |       await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |         route.continue(); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |         intercepted = true; | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |       await Promise.all([ | 
					
						
							|  |  |  |         context.waitForEvent('page'), | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |         page.click('a'), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(intercepted).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('window.open', function() { | 
					
						
							|  |  |  |     it('should inherit user agent from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext({ | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         userAgent: 'hey' | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2020-02-13 13:23:29 -08:00
										 |  |  |       const requestPromise = server.waitForRequest('/dummy.html'); | 
					
						
							|  |  |  |       const userAgent = await page.evaluate(url => { | 
					
						
							|  |  |  |         const win = window.open(url); | 
					
						
							|  |  |  |         return win.navigator.userAgent; | 
					
						
							|  |  |  |       }, server.PREFIX + '/dummy.html'); | 
					
						
							|  |  |  |       const request = await requestPromise; | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       await context.close(); | 
					
						
							| 
									
										
										
										
											2020-02-13 13:23:29 -08:00
										 |  |  |       expect(userAgent).toBe('hey'); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       expect(request.headers['user-agent']).toBe('hey'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |     it('should inherit extra headers from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-02-26 12:42:20 -08:00
										 |  |  |       const context = await browser.newContext({ | 
					
						
							|  |  |  |         extraHTTPHeaders: { 'foo': 'bar' }, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const requestPromise = server.waitForRequest('/dummy.html'); | 
					
						
							|  |  |  |       await page.evaluate(url => window._popup = window.open(url), server.PREFIX + '/dummy.html'); | 
					
						
							|  |  |  |       const request = await requestPromise; | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(request.headers['foo']).toBe('bar'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-22 22:16:39 -07:00
										 |  |  |     it('should inherit offline from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-03-04 17:58:12 -08:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await context.setOffline(true); | 
					
						
							|  |  |  |       const online = await page.evaluate(url => { | 
					
						
							|  |  |  |         const win = window.open(url); | 
					
						
							|  |  |  |         return win.navigator.onLine; | 
					
						
							|  |  |  |       }, server.PREFIX + '/dummy.html'); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(online).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-06 13:50:42 -08:00
										 |  |  |     it('should inherit http credentials from browser context', async function({browser, server}) { | 
					
						
							|  |  |  |       server.setAuth('/title.html', 'user', 'pass'); | 
					
						
							|  |  |  |       const context = await browser.newContext({ | 
					
						
							|  |  |  |         httpCredentials: { username: 'user', password: 'pass' } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-03-06 13:50:42 -08:00
										 |  |  |         page.evaluate(url => window._popup = window.open(url), server.PREFIX + '/title.html'), | 
					
						
							|  |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2020-03-23 13:51:11 -07:00
										 |  |  |       await popup.waitForLoadState('domcontentloaded'); | 
					
						
							| 
									
										
										
										
											2020-03-06 13:50:42 -08:00
										 |  |  |       expect(await popup.title()).toBe('Woof-Woof'); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-21 17:58:33 -07:00
										 |  |  |     it('should inherit touch support from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext({ | 
					
						
							| 
									
										
										
										
											2020-03-17 18:21:02 -07:00
										 |  |  |         viewport: { width: 400, height: 500 }, | 
					
						
							|  |  |  |         hasTouch: true | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const hasTouch = await page.evaluate(() => { | 
					
						
							|  |  |  |         const win = window.open(''); | 
					
						
							|  |  |  |         return 'ontouchstart' in win; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(hasTouch).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-05 10:45:32 -08:00
										 |  |  |     it('should inherit viewport size from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext({ | 
					
						
							| 
									
										
										
										
											2020-02-27 08:43:01 -08:00
										 |  |  |         viewport: { width: 400, height: 500 } | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const size = await page.evaluate(() => { | 
					
						
							|  |  |  |         const win = window.open('about:blank'); | 
					
						
							|  |  |  |         return { width: win.innerWidth, height: win.innerHeight }; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(size).toEqual({width: 400, height: 500}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-26 15:55:01 -07:00
										 |  |  |     it('should respect routes from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       let intercepted = false; | 
					
						
							| 
									
										
										
										
											2020-03-13 14:30:40 -07:00
										 |  |  |       await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |         route.continue(); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |         intercepted = true; | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-03-26 15:55:01 -07:00
										 |  |  |       await Promise.all([ | 
					
						
							|  |  |  |         page.waitForEvent('popup'), | 
					
						
							|  |  |  |         page.evaluate(url => window.__popup = window.open(url), server.EMPTY_PAGE), | 
					
						
							|  |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |       expect(intercepted).toBe(true); | 
					
						
							| 
									
										
										
										
											2020-03-26 15:55:01 -07:00
										 |  |  |       await context.close(); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:02:54 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-09 16:06:30 -07:00
										 |  |  |     it('should apply addInitScript from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-02-27 16:18:33 -08:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-27 17:42:14 -08:00
										 |  |  |       await context.addInitScript(() => window.injected = 123); | 
					
						
							| 
									
										
										
										
											2020-02-27 16:18:33 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const injected = await page.evaluate(() => { | 
					
						
							|  |  |  |         const win = window.open('about:blank'); | 
					
						
							|  |  |  |         return win.injected; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(injected).toBe(123); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-22 22:45:15 -07:00
										 |  |  |     it('should expose function from browser context', async function({browser, server}) { | 
					
						
							| 
									
										
										
										
											2020-03-03 16:46:06 -08:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       await context.exposeFunction('add', (a, b) => a + b); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const added = await page.evaluate(async () => { | 
					
						
							|  |  |  |         const win = window.open('about:blank'); | 
					
						
							|  |  |  |         return win.add(9, 4); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(added).toBe(13); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('Page.Events.Popup', function() { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work', async({browser}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         page.evaluate(() => window.__popup = window.open('about:blank')), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(true); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-13 13:08:35 -07:00
										 |  |  |     it.fail(FFOX)('should work with window features', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-03-13 13:08:35 -07:00
										 |  |  |         page.evaluate(() => window.__popup = window.open(window.location.href, 'Title', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=200,top=0,left=0')), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(true); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-05 15:18:27 -08:00
										 |  |  |     it('should emit for immediately closed popups', async({browser}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-05 15:18:27 -08:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							|  |  |  |         page.evaluate(() => { | 
					
						
							|  |  |  |           const win = window.open('about:blank'); | 
					
						
							|  |  |  |           win.close(); | 
					
						
							|  |  |  |         }), | 
					
						
							|  |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2020-03-11 14:46:52 -07:00
										 |  |  |       expect(popup).toBeTruthy(); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-26 16:13:11 -07:00
										 |  |  |     it('should be able to capture alert', async({browser}) => { | 
					
						
							| 
									
										
										
										
											2020-03-10 10:06:17 -07:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       const evaluatePromise = page.evaluate(() => { | 
					
						
							| 
									
										
										
										
											2020-03-26 16:13:11 -07:00
										 |  |  |         const win = window.open(''); | 
					
						
							| 
									
										
										
										
											2020-03-10 10:06:17 -07:00
										 |  |  |         win.alert('hello'); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |       const popup = await page.waitForEvent('popup'); | 
					
						
							| 
									
										
										
										
											2020-03-10 10:06:17 -07:00
										 |  |  |       const dialog = await popup.waitForEvent('dialog'); | 
					
						
							|  |  |  |       expect(dialog.message()).toBe('hello'); | 
					
						
							|  |  |  |       await dialog.dismiss(); | 
					
						
							|  |  |  |       await evaluatePromise; | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |     it('should work with empty url', async({browser}) => { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         page.evaluate(() => window.__popup = window.open('')), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(true); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-21 19:56:33 -07:00
										 |  |  |     it('should work with noopener and no url', async({browser}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							|  |  |  |         page.waitForEvent('popup'), | 
					
						
							|  |  |  |         page.evaluate(() => window.__popup = window.open(undefined, null, 'noopener')), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(popup.url()).toBe('about:blank'); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |     it('should work with noopener and about:blank', async({browser}) => { | 
					
						
							| 
									
										
										
										
											2020-03-18 17:14:18 -07:00
										 |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-03-18 17:14:18 -07:00
										 |  |  |         page.evaluate(() => window.__popup = window.open('about:blank', null, 'noopener')), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     it('should work with noopener and url', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-03-18 17:14:18 -07:00
										 |  |  |         page.evaluate(url => window.__popup = window.open(url, null, 'noopener'), server.EMPTY_PAGE), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work with clicking target=_blank', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel="opener" href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-03-18 17:14:18 -07:00
										 |  |  |         page.click('a'), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(true); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work with fake-clicking target=_blank and rel=noopener', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       // TODO: FFOX sends events for "one-style.html" request to both pages.
 | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel=noopener href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         page.$eval('a', a => a.click()), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work with clicking target=_blank and rel=noopener', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel=noopener href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         page.click('a'), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       expect(await page.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       expect(await popup.evaluate(() => !!window.opener)).toBe(false); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should not treat navigations as new popups', async({browser, server}) => { | 
					
						
							|  |  |  |       const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |       const page = await context.newPage(); | 
					
						
							|  |  |  |       await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |       await page.setContent('<a target=_blank rel=noopener href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |       const [popup] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-03-19 16:25:12 -07:00
										 |  |  |         page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-02-11 18:52:01 -08:00
										 |  |  |         page.click('a'), | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       let badSecondPopup = false; | 
					
						
							|  |  |  |       page.on('popup', () => badSecondPopup = true); | 
					
						
							|  |  |  |       await popup.goto(server.CROSS_PROCESS_PREFIX + '/empty.html'); | 
					
						
							|  |  |  |       await context.close(); | 
					
						
							|  |  |  |       expect(badSecondPopup).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; |