| 
									
										
										
										
											2020-12-29 06:50:12 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 08:45:04 +08:00
										 |  |  | import { test, expect } from './inspectorTest'; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | test.describe('cli codegen', () => { | 
					
						
							| 
									
										
										
										
											2021-05-01 04:26:13 +08:00
										 |  |  |   test.skip(({ mode }) => mode !== 'default'); | 
					
						
							| 
									
										
										
										
											2021-05-14 01:22:23 +08:00
										 |  |  |   test.fixme(({ browserName, headless }) => browserName === 'firefox' && !headless, 'Focus is off'); | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   test('should click', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<button onclick="console.log('click')">Submit</button>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.hoverOverElement('button'); | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     expect(selector).toBe('role=button[name=\"Submit\"]'); | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.dispatchEvent('button', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |   await page.locator('role=button[name=\"Submit\"]').click();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     await page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |       page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |         await page.Locator(\"role=button[name=\\\"Submit\\\"]\").ClickAsync();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('click'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 08:45:04 +08:00
										 |  |  |   test('should click after same-document navigation', async ({ page, openRecorder, server }) => { | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 08:45:04 +08:00
										 |  |  |     server.setRoute('/foo.html', (req, res) => { | 
					
						
							| 
									
										
										
										
											2021-01-14 06:25:42 +08:00
										 |  |  |       res.setHeader('Content-Type', 'text/html; charset=utf-8'); | 
					
						
							|  |  |  |       res.end(''); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-05-09 08:45:04 +08:00
										 |  |  |     await recorder.setContentAndWait(`<button onclick="console.log('click')">Submit</button>`, server.PREFIX + '/foo.html'); | 
					
						
							| 
									
										
										
										
											2021-01-14 06:25:42 +08:00
										 |  |  |     await Promise.all([ | 
					
						
							|  |  |  |       page.waitForNavigation(), | 
					
						
							|  |  |  |       page.evaluate(() => history.pushState({}, '', '/url.html')), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     // This is the only way to give recorder a chance to install
 | 
					
						
							|  |  |  |     // the second unnecessary copy of the recorder script.
 | 
					
						
							|  |  |  |     await page.waitForTimeout(1000); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.hoverOverElement('button'); | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     expect(selector).toBe('role=button[name=\"Submit\"]'); | 
					
						
							| 
									
										
										
										
											2021-01-14 06:25:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							| 
									
										
										
										
											2021-01-14 06:25:42 +08:00
										 |  |  |       page.dispatchEvent('button', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |   await page.locator('role=button[name=\"Submit\"]').click();`);
 | 
					
						
							| 
									
										
										
										
											2021-01-14 06:25:42 +08:00
										 |  |  |     expect(message.text()).toBe('click'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  |   test('should make a positioned click on a canvas', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await recorder.setContentAndWait(`
 | 
					
						
							|  |  |  |       <canvas width="500" height="500" style="margin: 42px"/> | 
					
						
							|  |  |  |       <script> | 
					
						
							|  |  |  |       document.querySelector("canvas").addEventListener("click", event => { | 
					
						
							|  |  |  |         const rect = event.target.getBoundingClientRect(); | 
					
						
							|  |  |  |         console.log("click", event.clientX - rect.left, event.clientY - rect.top); | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |       </script> | 
					
						
							|  |  |  |     `);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.waitForHighlight(() => recorder.page.hover('canvas', { | 
					
						
							|  |  |  |       position: { x: 250, y: 250 }, | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |     expect(selector).toBe('canvas'); | 
					
						
							|  |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							|  |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							|  |  |  |       recorder.page.click('canvas', { | 
					
						
							|  |  |  |         position: { x: 250, y: 250 }, | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('canvas').click({ | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  |     position: { | 
					
						
							|  |  |  |       x: 250, | 
					
						
							|  |  |  |       y: 250 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   });`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator("canvas").click(position={"x":250,"y":250})`);
 | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator("canvas").click(position={"x":250,"y":250})`);
 | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("canvas").click(new Locator.ClickOptions() | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  |         .setPosition(250, 250));`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator("canvas").ClickAsync(new LocatorClickOptions | 
					
						
							| 
									
										
										
										
											2021-10-14 23:37:29 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |             Position = new Position | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 X = 250, | 
					
						
							|  |  |  |                 Y = 250, | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         });`);
 | 
					
						
							|  |  |  |     expect(message.text()).toBe('click 250 250'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should work with TrustedTypes', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  |     await recorder.setContentAndWait(`
 | 
					
						
							|  |  |  |       <head> | 
					
						
							|  |  |  |         <meta http-equiv="Content-Security-Policy" content="trusted-types unsafe escape; require-trusted-types-for 'script'"> | 
					
						
							|  |  |  |     </head> | 
					
						
							|  |  |  |     <body> | 
					
						
							|  |  |  |       <button onclick="console.log('click')">Submit</button> | 
					
						
							|  |  |  |     </body>`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.hoverOverElement('button'); | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     expect(selector).toBe('role=button[name=\"Submit\"]'); | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  |       page.dispatchEvent('button', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |   await page.locator('role=button[name=\"Submit\"]').click();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     await page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |       page.locator(\"role=button[name=\\\"Submit\\\"]\").click()`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |         await page.Locator(\"role=button[name=\\\"Submit\\\"]\").ClickAsync();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-23 03:38:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(message.text()).toBe('click'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should not target selector preview by text regexp', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<span>dummy</span>`); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     // Force highlight.
 | 
					
						
							|  |  |  |     await recorder.hoverOverElement('span'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     // Append text after highlight.
 | 
					
						
							|  |  |  |     await page.evaluate(() => { | 
					
						
							|  |  |  |       const div = document.createElement('div'); | 
					
						
							|  |  |  |       div.setAttribute('onclick', "console.log('click')"); | 
					
						
							|  |  |  |       div.textContent = ' Some long text here '; | 
					
						
							|  |  |  |       document.documentElement.appendChild(div); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.hoverOverElement('div'); | 
					
						
							| 
									
										
										
										
											2021-02-09 13:53:17 +08:00
										 |  |  |     expect(selector).toBe('text=Some long text here'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     // Sanity check that selector does not match our highlight.
 | 
					
						
							|  |  |  |     const divContents = await page.$eval(selector, div => div.outerHTML); | 
					
						
							| 
									
										
										
										
											2021-10-20 08:03:15 +08:00
										 |  |  |     expect(divContents.replace(/\s__playwright_target__="[^"]+"/, '')).toBe(`<div onclick="console.log('click')"> Some long text here </div>`); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.dispatchEvent('div', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('text=Some long text here').click();`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('click'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should fill', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input id="input" name="name" oninput="console.log(input.value)"></input>`); | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="name"]'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'fill'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.fill('input', 'John') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="name"]').fill('John');`);
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("input[name=\\\"name\\\"]").fill("John");`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator(\"input[name=\\\"name\\\"]\").fill(\"John\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator(\"input[name=\\\"name\\\"]\").fill(\"John\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator(\"input[name=\\\"name\\\"]\").FillAsync(\"John\");`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('John'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-10 15:46:30 +08:00
										 |  |  |   test('should fill japanese text', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // In Japanese, "てすと" or "テスト" means "test".
 | 
					
						
							|  |  |  |     await recorder.setContentAndWait(`<input id="input" name="name" oninput="input.value === 'てすと' && console.log(input.value)"></input>`); | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="name"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							|  |  |  |       recorder.waitForOutput('JavaScript', 'fill'), | 
					
						
							|  |  |  |       (async () => { | 
					
						
							| 
									
										
										
										
											2022-08-11 14:48:55 +08:00
										 |  |  |         await recorder.page.dispatchEvent(selector, 'keydown', { key: 'Process' }); | 
					
						
							|  |  |  |         await recorder.page.keyboard.insertText('てすと'); | 
					
						
							|  |  |  |         await recorder.page.dispatchEvent(selector, 'keyup', { key: 'Process' }); | 
					
						
							| 
									
										
										
										
											2022-08-10 15:46:30 +08:00
										 |  |  |       })() | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							|  |  |  |   await page.locator('input[name="name"]').fill('てすと');`);
 | 
					
						
							|  |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							|  |  |  |       page.locator("input[name=\\\"name\\\"]").fill("てすと");`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							|  |  |  |     page.locator(\"input[name=\\\"name\\\"]\").fill(\"てすと\")`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							|  |  |  |     await page.locator(\"input[name=\\\"name\\\"]\").fill(\"てすと\")`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							|  |  |  |         await page.Locator(\"input[name=\\\"name\\\"]\").FillAsync(\"てすと\");`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(message.text()).toBe('てすと'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should fill textarea', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<textarea id="textarea" name="name" oninput="console.log(textarea.value)"></textarea>`); | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('textarea'); | 
					
						
							|  |  |  |     expect(selector).toBe('textarea[name="name"]'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'fill'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.fill('textarea', 'John') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('textarea[name="name"]').fill('John');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('John'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should press', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input name="name" onkeypress="console.log('press')"></input>`); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="name"]'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const messages: any[] = []; | 
					
						
							| 
									
										
										
										
											2020-12-30 01:59:35 +08:00
										 |  |  |     page.on('console', message => messages.push(message)); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       recorder.waitForActionPerformed(), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'press'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.press('input', 'Shift+Enter') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="name"]').press('Shift+Enter');`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("input[name=\\\"name\\\"]").press("Shift+Enter");`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator(\"input[name=\\\"name\\\"]\").press(\"Shift+Enter\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator(\"input[name=\\\"name\\\"]\").press(\"Shift+Enter\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator(\"input[name=\\\"name\\\"]\").PressAsync(\"Shift+Enter\");`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(messages[0].text()).toBe('press'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should update selected element after pressing Tab', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`
 | 
					
						
							|  |  |  |       <input name="one"></input> | 
					
						
							|  |  |  |       <input name="two"></input> | 
					
						
							|  |  |  |     `);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await page.click('input[name="one"]'); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     await recorder.waitForOutput('JavaScript', 'click'); | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await page.keyboard.type('foobar123'); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     await recorder.waitForOutput('JavaScript', 'foobar123'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await page.keyboard.press('Tab'); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     await recorder.waitForOutput('JavaScript', 'Tab'); | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await page.keyboard.type('barfoo321'); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     await recorder.waitForOutput('JavaScript', 'barfoo321'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     const text = recorder.sources().get('JavaScript').text; | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     expect(text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="one"]').fill('foobar123');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     expect(text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="one"]').press('Tab');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     expect(text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="two"]').fill('barfoo321');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should record ArrowDown', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input name="name" onkeydown="console.log('press:' + event.key)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="name"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const messages: any[] = []; | 
					
						
							|  |  |  |     page.on('console', message => { | 
					
						
							|  |  |  |       messages.push(message); | 
					
						
							| 
									
										
										
										
											2020-12-30 01:59:35 +08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       recorder.waitForActionPerformed(), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'press'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.press('input', 'ArrowDown') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="name"]').press('ArrowDown');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(messages[0].text()).toBe('press:ArrowDown'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should emit single keyup on ArrowDown', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input name="name" onkeydown="console.log('down:' + event.key)" onkeyup="console.log('up:' + event.key)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="name"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const messages: any[] = []; | 
					
						
							|  |  |  |     page.on('console', message => { | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       if (message.type() !== 'error') | 
					
						
							|  |  |  |         messages.push(message); | 
					
						
							| 
									
										
										
										
											2020-12-30 01:59:35 +08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       recorder.waitForActionPerformed(), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'press'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.press('input', 'ArrowDown') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="name"]').press('ArrowDown');`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(messages.length).toBe(2); | 
					
						
							|  |  |  |     expect(messages[0].text()).toBe('down:ArrowDown'); | 
					
						
							|  |  |  |     expect(messages[1].text()).toBe('up:ArrowDown'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should check', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="console.log(checkbox.checked)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="accept"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'check'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.click('input') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="accept"]').check();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("input[name=\\\"accept\\\"]").check();`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator(\"input[name=\\\"accept\\\"]\").check()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator(\"input[name=\\\"accept\\\"]\").check()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator(\"input[name=\\\"accept\\\"]\").CheckAsync();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('true'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-17 02:10:00 +08:00
										 |  |  |   test('should check a radio button', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await recorder.setContentAndWait(`<input id="checkbox" type="radio" name="accept" onchange="console.log(checkbox.checked)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="accept"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							|  |  |  |       recorder.waitForOutput('JavaScript', 'check'), | 
					
						
							|  |  |  |       page.click('input') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							|  |  |  |   await page.locator('input[name="accept"]').check();`);
 | 
					
						
							|  |  |  |     expect(message.text()).toBe('true'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should check with keyboard', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" name="accept" onchange="console.log(checkbox.checked)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="accept"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'check'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.keyboard.press('Space') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="accept"]').check();`);
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('true'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should uncheck', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<input id="checkbox" type="checkbox" checked name="accept" onchange="console.log(checkbox.checked)"></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const selector = await recorder.focusElement('input'); | 
					
						
							|  |  |  |     expect(selector).toBe('input[name="accept"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'uncheck'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.click('input') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('input[name="accept"]').uncheck();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("input[name=\\\"accept\\\"]").uncheck();`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator(\"input[name=\\\"accept\\\"]\").uncheck()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator(\"input[name=\\\"accept\\\"]\").uncheck()`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator(\"input[name=\\\"accept\\\"]\").UncheckAsync();`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('false'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should select', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait('<select id="age" onchange="console.log(age.selectedOptions[0].value)"><option value="1"><option value="2"></select>'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.hoverOverElement('select'); | 
					
						
							| 
									
										
										
										
											2021-02-09 13:53:17 +08:00
										 |  |  |     expect(selector).toBe('select'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [message, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       page.waitForEvent('console', msg => msg.type() !== 'error'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'select'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.selectOption('select', '2') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('select').selectOption('2');`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("select").selectOption("2");`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator(\"select\").select_option(\"2\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator(\"select\").select_option(\"2\")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator(\"select\").SelectOptionAsync(new[] { \"2\" });`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(message.text()).toBe('2'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-14 01:22:23 +08:00
										 |  |  |   test('should await popup', async ({ page, openRecorder, browserName, headless }) => { | 
					
						
							|  |  |  |     test.fixme(browserName === 'webkit' && !headless, 'Middle click does not open a popup in our webkit embedder'); | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait('<a target=_blank rel=noopener href="about:blank">link</a>'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.hoverOverElement('a'); | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     expect(selector).toBe('role=link[name=\"link\"]'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [popup, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.context().waitForEvent('page'), | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'waitForEvent'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.dispatchEvent('a', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   const [page1] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |     page.locator('role=link[name=\"link\"]').click() | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   ]);`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  |       Page page1 = page.waitForPopup(() -> { | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |         page.locator("role=link[name=\\\"link\\\"]").click(); | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  |       });`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     with page.expect_popup() as popup_info: | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |         page.locator(\"role=link[name=\\\"link\\\"]\").click() | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     page1 = popup_info.value`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     async with page.expect_popup() as popup_info: | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |         await page.locator(\"role=link[name=\\\"link\\\"]\").click() | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     page1 = await popup_info.value`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2021-05-27 06:44:40 +08:00
										 |  |  |         var page1 = await page.RunAndWaitForPopupAsync(async () => | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2022-10-03 23:44:24 +08:00
										 |  |  |             await page.Locator(\"role=link[name=\\\"link\\\"]\").ClickAsync(); | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  |         });`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(popup.url()).toBe('about:blank'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should assert navigation', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<a onclick="window.location.href='about:blank#foo'">link</a>`); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.hoverOverElement('a'); | 
					
						
							| 
									
										
										
										
											2021-02-09 13:53:17 +08:00
										 |  |  |     expect(selector).toBe('text=link'); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.waitForNavigation(), | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'waitForURL'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.dispatchEvent('a', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('text=link').click(); | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |   await page.waitForURL('about:blank#foo');`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Playwright Test').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('text=link').click(); | 
					
						
							| 
									
										
										
										
											2021-09-02 23:24:31 +08:00
										 |  |  |   await expect(page).toHaveURL('about:blank#foo');`);
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("text=link").click(); | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |       assertThat(page).hasURL("about:blank#foo");`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Python').text).toContain(`
 | 
					
						
							|  |  |  |     page.locator("text=link").click() | 
					
						
							|  |  |  |     page.wait_for_url("about:blank#foo")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Python Async').text).toContain(`
 | 
					
						
							|  |  |  |     await page.locator("text=link").click() | 
					
						
							|  |  |  |     await page.wait_for_url("about:blank#foo")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Pytest').text).toContain(`
 | 
					
						
							|  |  |  |     page.locator("text=link").click() | 
					
						
							|  |  |  |     expect(page).to_have_url("about:blank#foo")`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect.soft(sources.get('C#').text).toContain(`
 | 
					
						
							|  |  |  |         await page.Locator("text=link").ClickAsync(); | 
					
						
							|  |  |  |         await page.WaitForURLAsync("about:blank#foo");`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(page.url()).toContain('about:blank#foo'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   test('should await navigation', async ({ page, openRecorder }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     await recorder.setContentAndWait(`<a onclick="setTimeout(() => window.location.href='about:blank#foo', 1000)">link</a>`); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     const selector = await recorder.hoverOverElement('a'); | 
					
						
							| 
									
										
										
										
											2021-02-09 13:53:17 +08:00
										 |  |  |     expect(selector).toBe('text=link'); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     const [, sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.waitForNavigation(), | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'waitForURL'), | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |       page.dispatchEvent('a', 'click', { detail: 1 }) | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('JavaScript').text).toContain(`
 | 
					
						
							|  |  |  |   await page.locator('text=link').click(); | 
					
						
							|  |  |  |   await page.waitForURL('about:blank#foo');`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Java').text).toContain(`
 | 
					
						
							|  |  |  |       page.locator("text=link").click(); | 
					
						
							|  |  |  |       assertThat(page).hasURL("about:blank#foo");`);
 | 
					
						
							| 
									
										
										
										
											2021-03-04 06:32:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Python').text).toContain(`
 | 
					
						
							|  |  |  |     page.locator(\"text=link\").click() | 
					
						
							|  |  |  |     page.wait_for_url("about:blank#foo")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('Python Async').text).toContain(`
 | 
					
						
							|  |  |  |     await page.locator(\"text=link\").click() | 
					
						
							|  |  |  |     await page.wait_for_url("about:blank#foo")`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 01:02:09 +08:00
										 |  |  |     expect.soft(sources.get('C#').text).toContain(`
 | 
					
						
							|  |  |  |         await page.Locator(\"text=link\").ClickAsync(); | 
					
						
							|  |  |  |         await page.WaitForURLAsync(\"about:blank#foo\");`);
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 09:39:30 +08:00
										 |  |  |     expect(page.url()).toContain('about:blank#foo'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-04-13 00:00:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-14 01:22:23 +08:00
										 |  |  |   test('should ignore AltGraph', async ({ openRecorder, browserName }) => { | 
					
						
							|  |  |  |     test.skip(browserName === 'firefox', 'The TextInputProcessor in Firefox does not work with AltGraph.'); | 
					
						
							| 
									
										
										
										
											2021-04-13 00:00:29 +08:00
										 |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  |     await recorder.setContentAndWait(`<input></input>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await recorder.page.type('input', 'playwright'); | 
					
						
							|  |  |  |     await recorder.page.keyboard.press('AltGraph'); | 
					
						
							|  |  |  |     await recorder.page.keyboard.insertText('@'); | 
					
						
							|  |  |  |     await recorder.page.keyboard.type('example.com'); | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     await recorder.waitForOutput('JavaScript', 'example.com'); | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     expect(recorder.sources().get('JavaScript').text).not.toContain(`await page.locator('input').press('AltGraph');`); | 
					
						
							|  |  |  |     expect(recorder.sources().get('JavaScript').text).toContain(`await page.locator('input').fill('playwright@example.com');`); | 
					
						
							| 
									
										
										
										
											2021-04-13 00:00:29 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   test('should middle click', async ({ page, openRecorder, server }) => { | 
					
						
							|  |  |  |     const recorder = await openRecorder(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await recorder.setContentAndWait(`<a href${JSON.stringify(server.EMPTY_PAGE)}>Click me</a>`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const [sources] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |       recorder.waitForOutput('JavaScript', 'click'), | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  |       page.click('a', { button: 'middle' }), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('JavaScript').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |   await page.locator('text=Click me').click({ | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  |     button: 'middle' | 
					
						
							|  |  |  |   });`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     page.locator("text=Click me").click(button="middle")`);
 | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Python Async').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |     await page.locator("text=Click me").click(button="middle")`);
 | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('Java').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |       page.locator("text=Click me").click(new Locator.ClickOptions() | 
					
						
							| 
									
										
										
										
											2021-05-22 07:17:25 +08:00
										 |  |  |         .setButton(MouseButton.MIDDLE));`);
 | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 07:52:59 +08:00
										 |  |  |     expect(sources.get('C#').text).toContain(`
 | 
					
						
							| 
									
										
										
										
											2022-02-05 11:27:45 +08:00
										 |  |  |         await page.Locator("text=Click me").ClickAsync(new LocatorClickOptions | 
					
						
							| 
									
										
										
										
											2021-05-21 06:47:14 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |             Button = MouseButton.Middle, | 
					
						
							|  |  |  |         });`);
 | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | }); |