| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2018 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  | import type { Frame } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2021-05-06 07:08:22 -07:00
										 |  |  | import { test as it, expect } from './pageTest'; | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  | import { attachFrame, detachFrame } from '../config/utils'; | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  | async function giveItTimeToLog(frame: Frame) { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await frame.evaluate(() => new Promise(f => requestAnimationFrame(() => requestAnimationFrame(f)))); | 
					
						
							|  |  |  |   await frame.evaluate(() => new Promise(f => requestAnimationFrame(() => requestAnimationFrame(f)))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  | const addElement = (tag: string) => document.body.appendChild(document.createElement(tag)); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw on waitFor', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   let error; | 
					
						
							| 
									
										
										
										
											2020-09-09 03:06:52 -07:00
										 |  |  |   // @ts-expect-error waitFor is undocumented
 | 
					
						
							|  |  |  |   await page.waitForSelector('*', { waitFor: 'attached' }).catch(e => error = e); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   expect(error!.message).toContain('options.waitFor is not supported, did you mean options.state?'); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should tolerate waitFor=visible', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   let error = false; | 
					
						
							| 
									
										
										
										
											2020-09-09 03:06:52 -07:00
										 |  |  |   // @ts-expect-error waitFor is undocumented
 | 
					
						
							|  |  |  |   await page.waitForSelector('*', { waitFor: 'visible' }).catch(() => error = true); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   expect(error).toBe(false); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should immediately resolve promise if node exists', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const frame = page.mainFrame(); | 
					
						
							|  |  |  |   await frame.waitForSelector('*'); | 
					
						
							|  |  |  |   await frame.evaluate(addElement, 'div'); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   await frame.waitForSelector('div', { state: 'attached' }); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('elementHandle.waitForSelector should immediately resolve if node exists', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.setContent(`<span>extra</span><div><span>target</span></div>`); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   const div = (await page.$('div'))!; | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const span = await div.waitForSelector('span', { state: 'attached' }); | 
					
						
							|  |  |  |   expect(await span.evaluate(e => e.textContent)).toBe('target'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('elementHandle.waitForSelector should wait', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.setContent(`<div></div>`); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   const div = (await page.$('div'))!; | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const promise = div.waitForSelector('span', { state: 'attached' }); | 
					
						
							|  |  |  |   await div.evaluate(div => div.innerHTML = '<span>target</span>'); | 
					
						
							|  |  |  |   const span = await promise; | 
					
						
							|  |  |  |   expect(await span.evaluate(e => e.textContent)).toBe('target'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('elementHandle.waitForSelector should timeout', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.setContent(`<div></div>`); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   const div = (await page.$('div'))!; | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const error = await div.waitForSelector('span', { timeout: 100 }).catch(e => e); | 
					
						
							|  |  |  |   expect(error.message).toContain('Timeout 100ms exceeded.'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('elementHandle.waitForSelector should throw on navigation', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.setContent(`<div></div>`); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   const div = (await page.$('div'))!; | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const promise = div.waitForSelector('span').catch(e => e); | 
					
						
							|  |  |  |   // Give it some time before navigating.
 | 
					
						
							|  |  |  |   for (let i = 0; i < 10; i++) | 
					
						
							|  |  |  |     await page.evaluate(() => 1); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const error = await promise; | 
					
						
							| 
									
										
										
										
											2022-12-27 13:39:35 -08:00
										 |  |  |   expect(error.message).toContain(`waiting for locator('span') to be visible`); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  | it('should work with removed MutationObserver', async ({ page }) => { | 
					
						
							|  |  |  |   await page.evaluate(() => delete (window as any).MutationObserver); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const [handle] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForSelector('.zombo'), | 
					
						
							|  |  |  |     page.setContent(`<div class='zombo'>anything</div>`), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(await page.evaluate(x => x.textContent, handle)).toBe('anything'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should resolve promise when node is added', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const frame = page.mainFrame(); | 
					
						
							|  |  |  |   const watchdog = frame.waitForSelector('div', { state: 'attached' }); | 
					
						
							|  |  |  |   await frame.evaluate(addElement, 'br'); | 
					
						
							|  |  |  |   await frame.evaluate(addElement, 'div'); | 
					
						
							|  |  |  |   const eHandle = await watchdog; | 
					
						
							|  |  |  |   const tagName = await eHandle.getProperty('tagName').then(e => e.jsonValue()); | 
					
						
							|  |  |  |   expect(tagName).toBe('DIV'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should report logs while waiting for visible', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const frame = page.mainFrame(); | 
					
						
							|  |  |  |   const watchdog = frame.waitForSelector('div', { timeout: 5000 }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await frame.evaluate(() => { | 
					
						
							|  |  |  |     const div = document.createElement('div'); | 
					
						
							|  |  |  |     div.className = 'foo bar'; | 
					
						
							|  |  |  |     div.id = 'mydiv'; | 
					
						
							|  |  |  |     div.setAttribute('style', 'display: none'); | 
					
						
							|  |  |  |     div.setAttribute('foo', '123456789012345678901234567890123456789012345678901234567890'); | 
					
						
							|  |  |  |     div.textContent = 'abcdefghijklmnopqrstuvwyxzabcdefghijklmnopqrstuvwyxzabcdefghijklmnopqrstuvwyxz'; | 
					
						
							|  |  |  |     document.body.appendChild(div); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await giveItTimeToLog(frame); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   await frame.evaluate(() => document.querySelector('div')!.remove()); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await giveItTimeToLog(frame); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await frame.evaluate(() => { | 
					
						
							|  |  |  |     const div = document.createElement('div'); | 
					
						
							|  |  |  |     div.className = 'another'; | 
					
						
							|  |  |  |     div.style.display = 'none'; | 
					
						
							|  |  |  |     document.body.appendChild(div); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await giveItTimeToLog(frame); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const error = await watchdog.catch(e => e); | 
					
						
							|  |  |  |   expect(error.message).toContain(`frame.waitForSelector: Timeout 5000ms exceeded.`); | 
					
						
							| 
									
										
										
										
											2022-11-04 15:19:16 -07:00
										 |  |  |   expect(error.message).toContain(`waiting for locator(\'div\') to be visible`); | 
					
						
							|  |  |  |   expect(error.message).toContain(`locator resolved to hidden <div id="mydiv" class="foo bar" foo="1234567890123456…>abcdefghijklmnopqrstuvwyxzabcdefghijklmnopqrstuvw…</div>`); | 
					
						
							|  |  |  |   expect(error.message).toContain(`locator resolved to hidden <div class="another"></div>`); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should report logs while waiting for hidden', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const frame = page.mainFrame(); | 
					
						
							|  |  |  |   await frame.evaluate(() => { | 
					
						
							|  |  |  |     const div = document.createElement('div'); | 
					
						
							|  |  |  |     div.className = 'foo bar'; | 
					
						
							|  |  |  |     div.id = 'mydiv'; | 
					
						
							|  |  |  |     div.textContent = 'hello'; | 
					
						
							|  |  |  |     document.body.appendChild(div); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const watchdog = frame.waitForSelector('div', { state: 'hidden', timeout: 5000 }); | 
					
						
							|  |  |  |   await giveItTimeToLog(frame); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await frame.evaluate(() => { | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |     document.querySelector('div')!.remove(); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |     const div = document.createElement('div'); | 
					
						
							|  |  |  |     div.className = 'another'; | 
					
						
							|  |  |  |     div.textContent = 'hello'; | 
					
						
							|  |  |  |     document.body.appendChild(div); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await giveItTimeToLog(frame); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const error = await watchdog.catch(e => e); | 
					
						
							|  |  |  |   expect(error.message).toContain(`frame.waitForSelector: Timeout 5000ms exceeded.`); | 
					
						
							| 
									
										
										
										
											2022-11-04 15:19:16 -07:00
										 |  |  |   expect(error.message).toContain(`waiting for locator(\'div\') to be hidden`); | 
					
						
							|  |  |  |   expect(error.message).toContain(`locator resolved to visible <div id="mydiv" class="foo bar">hello</div>`); | 
					
						
							|  |  |  |   expect(error.message).toContain(`locator resolved to visible <div class="another">hello</div>`); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should report logs when the selector resolves to multiple elements', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-07-15 22:06:08 +02:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							| 
									
										
										
										
											2022-12-24 10:40:36 -08:00
										 |  |  |     <button style="display: none; position: absolute; top: 0px; left: 0px; width: 100%;">Reset</button> | 
					
						
							|  |  |  |     <button>Reset</button> | 
					
						
							| 
									
										
										
										
											2021-07-15 22:06:08 +02:00
										 |  |  |   `);
 | 
					
						
							|  |  |  |   const error = await page.click('text=Reset', { | 
					
						
							|  |  |  |     timeout: 1000 | 
					
						
							|  |  |  |   }).catch(e => e); | 
					
						
							| 
									
										
										
										
											2022-12-24 10:40:36 -08:00
										 |  |  |   expect(error.toString()).toContain('locator resolved to 2 elements. Proceeding with the first one: <button>Reset</button>'); | 
					
						
							| 
									
										
										
										
											2021-07-15 22:06:08 +02:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should resolve promise when node is added in shadow dom', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const watchdog = page.waitForSelector('span'); | 
					
						
							|  |  |  |   await page.evaluate(() => { | 
					
						
							|  |  |  |     const div = document.createElement('div'); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     div.attachShadow({ mode: 'open' }); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |     document.body.appendChild(div); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.evaluate(() => new Promise(f => setTimeout(f, 100))); | 
					
						
							|  |  |  |   await page.evaluate(() => { | 
					
						
							|  |  |  |     const span = document.createElement('span'); | 
					
						
							|  |  |  |     span.textContent = 'Hello from shadow'; | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |     document.querySelector('div')!.shadowRoot!.appendChild(span); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const handle = await watchdog; | 
					
						
							|  |  |  |   expect(await handle.evaluate(e => e.textContent)).toBe('Hello from shadow'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work when node is added through innerHTML', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   const watchdog = page.waitForSelector('h3 div', { state: 'attached' }); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.evaluate(addElement, 'span'); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   await page.evaluate(() => document.querySelector('span')!.innerHTML = '<h3><div></div></h3>'); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await watchdog; | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('page.waitForSelector is shortcut for main frame', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |   await attachFrame(page, 'frame1', server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const otherFrame = page.frames()[1]; | 
					
						
							|  |  |  |   const watchdog = page.waitForSelector('div', { state: 'attached' }); | 
					
						
							|  |  |  |   await otherFrame.evaluate(addElement, 'div'); | 
					
						
							|  |  |  |   await page.evaluate(addElement, 'div'); | 
					
						
							|  |  |  |   const eHandle = await watchdog; | 
					
						
							|  |  |  |   expect(await eHandle.ownerFrame()).toBe(page.mainFrame()); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should run in specified frame', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |   await attachFrame(page, 'frame1', server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await attachFrame(page, 'frame2', server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const frame1 = page.frames()[1]; | 
					
						
							|  |  |  |   const frame2 = page.frames()[2]; | 
					
						
							|  |  |  |   const waitForSelectorPromise = frame2.waitForSelector('div', { state: 'attached' }); | 
					
						
							|  |  |  |   await frame1.evaluate(addElement, 'div'); | 
					
						
							|  |  |  |   await frame2.evaluate(addElement, 'div'); | 
					
						
							|  |  |  |   const eHandle = await waitForSelectorPromise; | 
					
						
							|  |  |  |   expect(await eHandle.ownerFrame()).toBe(frame2); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw when frame is detached', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |   await attachFrame(page, 'frame1', server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   const frame = page.frames()[1]; | 
					
						
							|  |  |  |   let waitError = null; | 
					
						
							|  |  |  |   const waitPromise = frame.waitForSelector('.box').catch(e => waitError = e); | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |   await detachFrame(page, 'frame1'); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  |   await waitPromise; | 
					
						
							|  |  |  |   expect(waitError).toBeTruthy(); | 
					
						
							| 
									
										
										
										
											2023-10-23 09:31:30 -07:00
										 |  |  |   expect(waitError!.message).toContain('frame.waitForSelector: Frame was detached'); | 
					
						
							| 
									
										
										
										
											2020-08-24 20:26:06 -07:00
										 |  |  | }); |