| 
									
										
										
										
											2020-08-03 13:41:48 -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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-19 21:32:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 07:08:22 -07:00
										 |  |  | import { test as it, expect } from './pageTest'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should fire', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     expect(dialog.type()).toBe('alert'); | 
					
						
							|  |  |  |     expect(dialog.defaultValue()).toBe(''); | 
					
						
							|  |  |  |     expect(dialog.message()).toBe('yo'); | 
					
						
							|  |  |  |     dialog.accept(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.evaluate(() => alert('yo')); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 19:42:52 +01:00
										 |  |  | it('should allow accepting prompts @smoke', async ({ page, isElectron }) => { | 
					
						
							| 
									
										
										
										
											2021-04-09 07:59:09 -07:00
										 |  |  |   it.skip(isElectron, 'prompt() is not a thing in electron'); | 
					
						
							| 
									
										
										
										
											2021-04-08 10:26:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     expect(dialog.type()).toBe('prompt'); | 
					
						
							|  |  |  |     expect(dialog.defaultValue()).toBe('yes.'); | 
					
						
							|  |  |  |     expect(dialog.message()).toBe('question?'); | 
					
						
							|  |  |  |     dialog.accept('answer!'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const result = await page.evaluate(() => prompt('question?', 'yes.')); | 
					
						
							|  |  |  |   expect(result).toBe('answer!'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should dismiss the prompt', async ({ page, isElectron }) => { | 
					
						
							| 
									
										
										
										
											2021-04-09 07:59:09 -07:00
										 |  |  |   it.skip(isElectron, 'prompt() is not a thing in electron'); | 
					
						
							| 
									
										
										
										
											2021-04-08 10:26:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     dialog.dismiss(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const result = await page.evaluate(() => prompt('question?')); | 
					
						
							|  |  |  |   expect(result).toBe(null); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should accept the confirm prompt', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     dialog.accept(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const result = await page.evaluate(() => confirm('boolean?')); | 
					
						
							|  |  |  |   expect(result).toBe(true); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should dismiss the confirm prompt', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     dialog.dismiss(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const result = await page.evaluate(() => confirm('boolean?')); | 
					
						
							|  |  |  |   expect(result).toBe(false); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-26 12:45:53 -08:00
										 |  |  | it('should be able to close context with open alert', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const alertPromise = page.waitForEvent('dialog'); | 
					
						
							|  |  |  |   await page.evaluate(() => { | 
					
						
							|  |  |  |     setTimeout(() => alert('hello'), 0); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await alertPromise; | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-12-01 14:40:03 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should handle multiple alerts', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-12-01 14:40:03 -08:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     dialog.accept().catch(e => {}); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |     <p>Hello World</p> | 
					
						
							|  |  |  |     <script> | 
					
						
							|  |  |  |       alert('Please dismiss this dialog'); | 
					
						
							|  |  |  |       alert('Please dismiss this dialog'); | 
					
						
							|  |  |  |       alert('Please dismiss this dialog'); | 
					
						
							|  |  |  |     </script> | 
					
						
							|  |  |  |   `);
 | 
					
						
							|  |  |  |   expect(await page.textContent('p')).toBe('Hello World'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should handle multiple confirms', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-12-01 14:40:03 -08:00
										 |  |  |   page.on('dialog', dialog => { | 
					
						
							|  |  |  |     dialog.accept().catch(e => {}); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |     <p>Hello World</p> | 
					
						
							|  |  |  |     <script> | 
					
						
							|  |  |  |       confirm('Please confirm me?'); | 
					
						
							|  |  |  |       confirm('Please confirm me?'); | 
					
						
							|  |  |  |       confirm('Please confirm me?'); | 
					
						
							|  |  |  |     </script> | 
					
						
							|  |  |  |   `);
 | 
					
						
							|  |  |  |   expect(await page.textContent('p')).toBe('Hello World'); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-02-03 10:34:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should auto-dismiss the prompt without listeners', async ({ page, isElectron }) => { | 
					
						
							| 
									
										
										
										
											2021-04-09 07:59:09 -07:00
										 |  |  |   it.skip(isElectron, 'prompt() is not a thing in electron'); | 
					
						
							| 
									
										
										
										
											2021-04-08 10:26:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 10:34:45 -08:00
										 |  |  |   const result = await page.evaluate(() => prompt('question?')); | 
					
						
							|  |  |  |   expect(result).toBe(null); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should auto-dismiss the alert without listeners', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-02-03 10:34:45 -08:00
										 |  |  |   await page.setContent(`<div onclick="window.alert(123); window._clicked=true">Click me</div>`); | 
					
						
							|  |  |  |   await page.click('div'); | 
					
						
							|  |  |  |   expect(await page.evaluate('window._clicked')).toBe(true); | 
					
						
							|  |  |  | }); |