| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2017 Google Inc. All rights reserved. | 
					
						
							|  |  |  |  * Modifications 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-26 10:59:27 -07:00
										 |  |  | import { it, expect } from './fixtures'; | 
					
						
							| 
									
										
										
										
											2020-08-11 15:50:53 -07:00
										 |  |  | import util from 'util'; | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should work', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   let message = null; | 
					
						
							|  |  |  |   page.once('console', m => message = m); | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     page.evaluate(() => console.log('hello', 5, {foo: 'bar'})), | 
					
						
							|  |  |  |     page.waitForEvent('console') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(message.text()).toEqual('hello 5 JSHandle@object'); | 
					
						
							|  |  |  |   expect(message.type()).toEqual('log'); | 
					
						
							|  |  |  |   expect(await message.args()[0].jsonValue()).toEqual('hello'); | 
					
						
							|  |  |  |   expect(await message.args()[1].jsonValue()).toEqual(5); | 
					
						
							|  |  |  |   expect(await message.args()[2].jsonValue()).toEqual({foo: 'bar'}); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should emit same log twice', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   const messages = []; | 
					
						
							|  |  |  |   page.on('console', m => messages.push(m.text())); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |   await page.evaluate(() => { for (let i = 0; i < 2; ++i) console.log('hello'); }); | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   expect(messages).toEqual(['hello', 'hello']); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should use text() for inspection', async ({page}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   let text; | 
					
						
							|  |  |  |   const inspect = value => { | 
					
						
							|  |  |  |     text = util.inspect(value); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   page.on('console', inspect); | 
					
						
							|  |  |  |   await page.evaluate(() => console.log('Hello world')); | 
					
						
							|  |  |  |   expect(text).toEqual('Hello world'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should work for different console API calls', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   const messages = []; | 
					
						
							|  |  |  |   page.on('console', msg => messages.push(msg)); | 
					
						
							|  |  |  |   // All console events will be reported before `page.evaluate` is finished.
 | 
					
						
							|  |  |  |   await page.evaluate(() => { | 
					
						
							|  |  |  |     // A pair of time/timeEnd generates only one Console API call.
 | 
					
						
							|  |  |  |     console.time('calling console.time'); | 
					
						
							|  |  |  |     console.timeEnd('calling console.time'); | 
					
						
							|  |  |  |     console.trace('calling console.trace'); | 
					
						
							|  |  |  |     console.dir('calling console.dir'); | 
					
						
							|  |  |  |     console.warn('calling console.warn'); | 
					
						
							|  |  |  |     console.error('calling console.error'); | 
					
						
							|  |  |  |     console.log(Promise.resolve('should not wait until resolved!')); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(messages.map(msg => msg.type())).toEqual([ | 
					
						
							|  |  |  |     'timeEnd', 'trace', 'dir', 'warning', 'error', 'log' | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(messages[0].text()).toContain('calling console.time'); | 
					
						
							|  |  |  |   expect(messages.slice(1).map(msg => msg.text())).toEqual([ | 
					
						
							|  |  |  |     'calling console.trace', | 
					
						
							|  |  |  |     'calling console.dir', | 
					
						
							|  |  |  |     'calling console.warn', | 
					
						
							|  |  |  |     'calling console.error', | 
					
						
							|  |  |  |     'JSHandle@promise', | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should not fail for window object', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   let message = null; | 
					
						
							|  |  |  |   page.once('console', msg => message = msg); | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     page.evaluate(() => console.error(window)), | 
					
						
							|  |  |  |     page.waitForEvent('console') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(message.text()).toBe('JSHandle@object'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should trigger correct Log', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   await page.goto('about:blank'); | 
					
						
							|  |  |  |   const [message] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('console'), | 
					
						
							|  |  |  |     page.evaluate(async url => fetch(url).catch(e => {}), server.EMPTY_PAGE) | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(message.text()).toContain('Access-Control-Allow-Origin'); | 
					
						
							|  |  |  |   expect(message.type()).toEqual('error'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should have location for console API calls', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [message] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |     page.waitForEvent('console', m => m.text() === 'yellow'), | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |     page.goto(server.PREFIX + '/consolelog.html'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(message.type()).toBe('log'); | 
					
						
							|  |  |  |   const location = message.location(); | 
					
						
							|  |  |  |   // Engines have different column notion.
 | 
					
						
							|  |  |  |   delete location.columnNumber; | 
					
						
							|  |  |  |   expect(location).toEqual({ | 
					
						
							|  |  |  |     url: server.PREFIX + '/consolelog.html', | 
					
						
							|  |  |  |     lineNumber: 7, | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should not throw when there are console messages in detached iframes', async ({page, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |   // @see https://github.com/GoogleChrome/puppeteer/issues/3865
 | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [popup] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |     page.evaluate(async () => { | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |       // 1. Create a popup that Playwright is not connected to.
 | 
					
						
							|  |  |  |       const win = window.open(''); | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |       window['_popup'] = win; | 
					
						
							| 
									
										
										
										
											2020-08-04 15:09:24 -07:00
										 |  |  |       if (window.document.readyState !== 'complete') | 
					
						
							|  |  |  |         await new Promise(f => window.addEventListener('load', f)); | 
					
						
							|  |  |  |       // 2. In this popup, create an iframe that console.logs a message.
 | 
					
						
							|  |  |  |       win.document.body.innerHTML = `<iframe src='/consolelog.html'></iframe>`; | 
					
						
							|  |  |  |       const frame = win.document.querySelector('iframe'); | 
					
						
							|  |  |  |       if (!frame.contentDocument || frame.contentDocument.readyState !== 'complete') | 
					
						
							|  |  |  |         await new Promise(f => frame.addEventListener('load', f)); | 
					
						
							|  |  |  |       // 3. After that, remove the iframe.
 | 
					
						
							|  |  |  |       frame.remove(); | 
					
						
							|  |  |  |     }), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   // 4. Connect to the popup and make sure it doesn't throw.
 | 
					
						
							|  |  |  |   expect(await popup.evaluate('1 + 1')).toBe(2); | 
					
						
							|  |  |  | }); |