Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b55b3eae00 
							
						 
					 
					
						
						
							
							feat(firefox-beta): roll to r1399 ( #22385 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-13 13:37:35 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b7d06d4d24 
							
						 
					 
					
						
						
							
							test: worker network attribution is still not fixed in Firefox 113 ( #22390 )  
						
						 
						
						... 
						
						
						
						We'll need to wait until it is fixed upstream.
References https://github.com/microsoft/playwright/issues/21760  
						
						
					 
					
						2023-04-13 13:36:17 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0c3c6ed683 
							
						 
					 
					
						
						
							
							chore(driver): roll driver to recent Node.js LTS version ( #22378 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-13 12:24:10 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							90182a319d 
							
						 
					 
					
						
						
							
							test: fix android test ( #22370 )  
						
						 
						
						... 
						
						
						
						For some reason, Android model changed from `sdk_gphone64_x86_64` to
`sdk_gphone_x86_64`.
Relax the test to test the model name & architecture. 
						
						
					 
					
						2023-04-12 15:19:35 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9411790712 
							
						 
					 
					
						
						
							
							test: skip new tests that don't work in non-default mode ( #22369 )  
						
						 
						
						... 
						
						
						
						The tests were added in
5cd9f83c7b 
						
						
					 
					
						2023-04-12 15:15:34 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1962b5be3c 
							
						 
					 
					
						
						
							
							test: make sure process killing logic works without ps on Linux ( #22366 )  
						
						 
						
						... 
						
						
						
						The bare-bones `debian` distribution we use for testing doesn't have
`ps`. This patch switches to reading `/proc` file system directly on
Linux instead of relying on `ps`.
Performance measurements for the 20000 active processes on Debian Docker
container, tested on my M1 Max Mac:
- the `ps -eo pid,ppid,pgid` call + parsing takes 293ms
- the manual synchronous `/proc` traversal + parsing takes 326ms
So this is ~10% perf penalty.
Drive-by: rename `pgid` into `pgrp` so that it stands out from `pid`
(process ID) and `ppid` (parent process ID). 
						
						
					 
					
						2023-04-12 13:16:42 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Max Schmitt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							336d2114c8 
							
						 
					 
					
						
						
							
							chore: have Ubuntu 22 Docker image by default ( #22356 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright-python/issues/1858  
						
						
					 
					
						2023-04-12 19:40:23 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2977c2b539 
							
						 
					 
					
						
						
							
							test: refer to the upstream Firefox bug ( #22364 )  
						
						 
						
						... 
						
						
						
						There's no action on our side to fix this.
Fixes https://github.com/microsoft/playwright/issues/21550  
						
						
					 
					
						2023-04-12 10:37:21 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8bb708be70 
							
						 
					 
					
						
						
							
							test: unflake inspector-cli tests ( #22347 )  
						
						 
						
						... 
						
						
						
						This patch:
- changes the `childProcess` fixture to reliably SIGKILL all descendants
  (children and grand-children, regardless of their process group).
This is achieved using the `ps` command to build the process tree, and
then send
  `SIGKILL` to the descendant process groups.
- changes the `runCLI` fixture to **not** auto-close codegen by default;
  the `childProcess` fixture will clean up all processes. This makes
sure that all `runCLI.waitFor()` commands actually wait until the
necessary
  output.
- for a handful of tests that do actually want to auto-close codegen,
  introduce an optional `autoCloseWhen` flag for the `runCLI` fixture
that makes sure to close the codegen once a certain output was reached. 
						
						
					 
					
						2023-04-12 09:37:24 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Max Schmitt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							56dcab844a 
							
						 
					 
					
						
						
							
							docs: rename api testing ( #22362 )  
						
						 
						
						... 
						
						
						
						https://github.com/microsoft/playwright.dev/issues/1010  
						
						
					 
					
						2023-04-12 17:17:36 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							635d180251 
							
						 
					 
					
						
						
							
							chore(deps): bump xml2js from 0.4.23 to 0.5.0 in /utils/flakiness-dashboard ( #22346 )  
						
						 
						
						
						
						
					 
					
						2023-04-12 09:55:17 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a5749c033d 
							
						 
					 
					
						
						
							
							feat(firefox): roll to r1396 ( #22327 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright/issues/21995  
						
						
					 
					
						2023-04-11 08:49:44 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b256bd4e4c 
							
						 
					 
					
						
						
							
							feat(chromium-tip-of-tree): roll to r1103 ( #22335 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-11 15:31:02 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							15c6803880 
							
						 
					 
					
						
						
							
							test: add test for clicking in large viewports ( #22322 )  
						
						 
						
						... 
						
						
						
						Right now we cannot click on the boundaries of the viewports
that are larger than screen size in headed firefox.
https://github.com/microsoft/playwright/issues/22082  
						
						
					 
					
						2023-04-11 01:47:47 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8b8385b6cb 
							
						 
					 
					
						
						
							
							test: remove faulty test ( #22321 )  
						
						 
						
						... 
						
						
						
						Turns out we cannot guarantee order of events in Firefox: it might
close the page before we get a response from renderer.
Thus removing a faulty test.
References https://github.com/microsoft/playwright/issues/20093  
						
						
					 
					
						2023-04-10 20:12:39 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c5aeab4d7e 
							
						 
					 
					
						
						
							
							revert(20509, 20596): expect.toPass is broken with these ( #22254 )  
						
						 
						
						... 
						
						
						
						Reverts https://github.com/microsoft/playwright/pull/20509  and
https://github.com/microsoft/playwright/pull/20596 
Fixes  #22215  
						
						
					 
					
						2023-04-10 17:39:49 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1e9668f8bd 
							
						 
					 
					
						
						
							
							test: download link with data url ( #22312 )  
						
						 
						
						... 
						
						
						
						References #21892  
						
						
					 
					
						2023-04-10 14:15:06 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2d1c736091 
							
						 
					 
					
						
						
							
							doc: fix typo in docs ( #22314 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright/issues/22288  
						
						
					 
					
						2023-04-10 14:11:19 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2af3f486c4 
							
						 
					 
					
						
						
							
							fix: do not load trace data for passing tests ( #22311 )  
						
						 
						
						... 
						
						
						
						Fixes  #22122 
Fixes  #22120  
						
						
					 
					
						2023-04-10 13:29:55 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2573dff5e9 
							
						 
					 
					
						
						
							
							feat(webkit): roll to r1827 ( #22291 )  
						
						 
						
						
						
						
					 
					
						2023-04-10 13:10:34 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sander 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2b32d05175 
							
						 
					 
					
						
						
							
							test(ct): react17 coverage ( #22297 )  
						
						 
						
						
						
						
					 
					
						2023-04-09 15:11:31 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sander 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ec2dc92336 
							
						 
					 
					
						
						
							
							fix(ct): component type import path ( #22296 )  
						
						 
						
						
						
						
					 
					
						2023-04-09 15:04:46 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5cd9f83c7b 
							
						 
					 
					
						
						
							
							fix(webkit): properly set user agent in persistent context ( #22283 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright/issues/22274  
						
						
					 
					
						2023-04-07 19:50:49 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							635a2dac16 
							
						 
					 
					
						
						
							
							chore: remove FullProjectInternal.from ( #22280 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 19:12:20 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1efa8de526 
							
						 
					 
					
						
						
							
							test: fix reporter blob tests on bots ( #22281 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 17:48:54 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3b94bb6740 
							
						 
					 
					
						
						
							
							chore: simplify full config and full project building ( #22278 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 17:46:47 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8d2502ee62 
							
						 
					 
					
						
						
							
							test: make page-leaks tests pass in electron ( #22277 )  
						
						 
						
						... 
						
						
						
						They've been failing
https://devops.playwright.dev/flakiness.html#filter_spec=page%2Fpage-leaks.spec.ts&test_parameter_filters=%5B%5D×tamp=1680901928195  
						
						
					 
					
						2023-04-07 17:20:49 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							26bbf8ca1b 
							
						 
					 
					
						
						
							
							feat(chromium): roll to r1058 ( #22264 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 14:11:18 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Valentín Costa 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							93e020d483 
							
						 
					 
					
						
						
							
							docs(class-test.md): add missing R in the word returned ( #22252 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 13:57:28 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							12da068249 
							
						 
					 
					
						
						
							
							feat(webkit): roll to r1825 ( #22258 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 13:56:22 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								任跃兵 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2b1a121133 
							
						 
					 
					
						
						
							
							Update class-consolemessage.md ( #22261 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 13:51:46 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eed5b4c83b 
							
						 
					 
					
						
						
							
							chore: process stdio buffers ( #22270 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright/issues/22265  
						
						
					 
					
						2023-04-07 13:50:15 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d59e0e10ce 
							
						 
					 
					
						
						
							
							feat: blob reporter ( #22244 )  
						
						 
						
						... 
						
						
						
						#10437  
						
						
					 
					
						2023-04-07 13:47:52 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a42567d549 
							
						 
					 
					
						
						
							
							chore: inside out the config & project internal ( #22260 )  
						
						 
						
						
						
						
					 
					
						2023-04-07 09:54:01 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							02ca63b381 
							
						 
					 
					
						
						
							
							chore: use separator when printing titles in the list mode ( #22269 )  
						
						 
						
						... 
						
						
						
						Fixes https://github.com/microsoft/playwright/issues/22267  
						
						
					 
					
						2023-04-07 09:52:04 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1ea9f02944 
							
						 
					 
					
						
						
							
							chore: add configDir to reporter options ( #22250 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 14:23:47 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c36b96fd8c 
							
						 
					 
					
						
						
							
							feat(webkit): roll to r1824 ( #22251 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-06 22:46:26 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3400d62a7a 
							
						 
					 
					
						
						
							
							chore: discourage networkidle ( #22247 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 13:00:34 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							09f072de09 
							
						 
					 
					
						
						
							
							chore: introduce the concept of a test run ( #22243 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 11:20:24 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9ced1e278d 
							
						 
					 
					
						
						
							
							chore: remove the legacy webServer accessor from the config ( #22245 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 11:20:11 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Max Schmitt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2df0f0738d 
							
						 
					 
					
						
						
							
							test: report and kill child processes which are leaking after test ( #22237 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 20:09:19 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Max Schmitt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							44b63b042e 
							
						 
					 
					
						
						
							
							devops: do not download electron on non-electron workflows ( #22232 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 19:49:29 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sander 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cea382015f 
							
						 
					 
					
						
						
							
							chore(ct): rename component.d.ts ( #22234 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 08:40:49 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fc23d35697 
							
						 
					 
					
						
						
							
							chore: clear previous test results optionally ( #22224 )  
						
						 
						
						
						
						
					 
					
						2023-04-06 08:33:17 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							13c7ddb883 
							
						 
					 
					
						
						
							
							feat(chromium-tip-of-tree): roll to r1102 ( #22235 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-06 15:33:11 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Playwright Service 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f610577a18 
							
						 
					 
					
						
						
							
							feat(webkit): roll to r1823 ( #22227 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-06 11:52:48 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							08cef43e82 
							
						 
					 
					
						
						
							
							feat(locator): remove locator.and and locator.not ( #22223 )  
						
						 
						
						... 
						
						
						
						Not shipping for now, after API review. 
						
						
					 
					
						2023-04-05 16:28:13 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b5195122d9 
							
						 
					 
					
						
						
							
							chore: return promise from tele receiver dispatch ( #22218 )  
						
						 
						
						
						
						
					 
					
						2023-04-05 14:23:06 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							35afb056ea 
							
						 
					 
					
						
						
							
							feat(locator): filter({ hasNotText }) ( #22222 )  
						
						 
						
						... 
						
						
						
						The opposite of `filter({ hasText })`. 
						
						
					 
					
						2023-04-05 14:13:28 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							29643a7bff 
							
						 
					 
					
						
						
							
							test: add regression tests for clicking ( #22221 )  
						
						 
						
						... 
						
						
						
						https://github.com/microsoft/playwright/issues/21995  
						
						
					 
					
						2023-04-05 13:20:39 -07:00