Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							20e2bac857 
							
						 
					 
					
						
						
							
							test: fix flaky page event test  
						
						
						
						
					 
					
						2020-02-11 15:19:43 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							72b9cf010e 
							
						 
					 
					
						
						
							
							feat(context): introduce BrowserContext close event ( #918 )  
						
						
						
						
					 
					
						2020-02-11 10:27:19 -08:00 
						 
				 
			
				
					
						
							
							
								Joel Einbinder 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							251ad38824 
							
						 
					 
					
						
						
							
							fix(navigations): remove LifecycleWatcher, fix flakes ( #882 )  
						
						
						
						
					 
					
						2020-02-10 18:35:47 -08:00 
						 
				 
			
				
					
						
							
							
								Joel Einbinder 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c03e8b7946 
							
						 
					 
					
						
						
							
							chore(tests): add types for tests ( #915 )  
						
						... 
						
						
						
						I enabled vscode autocomplete in our test files. Typechecking had too many errors to enable, but it caught some real bugs that I will fix in a follow up.
This patch contains:
* `test/types.d.ts` - d.ts file for our test runner.
* `test/tsconfig.json` - typescript project for our tests.
* JSDoc header in all specs to mark the describe as a TestSuite
* Drive-by fix of a launcher test that was using `if` instead of `it`
* Some drive-by fixes of unimpactful typos in tests. 
						
						
					 
					
						2020-02-10 13:20:13 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a547aa7984 
							
						 
					 
					
						
						
							
							feat(connect): allow multiple webkit connections over web socket ( #863 )  
						
						
						
						
					 
					
						2020-02-06 12:41:43 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							55b6fe241e 
							
						 
					 
					
						
						
							
							feat(launch): introduce client, server & persistent launch modes (3) ( #854 )  
						
						
						
						
					 
					
						2020-02-05 16:36:36 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a2ab645e63 
							
						 
					 
					
						
						
							
							feat(launch): introduce client, server & persistent launch modes (2) ( #840 )  
						
						
						
						
					 
					
						2020-02-05 12:41:55 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0518625dcc 
							
						 
					 
					
						
						
							
							feat(launch): introduce client, server & persistent launch modes (1) ( #838 )  
						
						
						
						
					 
					
						2020-02-04 19:41:38 -08:00 
						 
				 
			
				
					
						
							
							
								Joel Einbinder 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2b231c9e1b 
							
						 
					 
					
						
						
							
							fix(test): unflake waitForSelector when browser closes test ( #767 )  
						
						... 
						
						
						
						The waitForSelector call might not have made it into the browser by the time we disconnect, resulting in a websocket error instead of a protocol error. 
						
						
					 
					
						2020-01-30 14:19:30 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ce7c8d74b5 
							
						 
					 
					
						
						
							
							feat: introduce BrowserType.name() ( #732 )  
						
						... 
						
						
						
						This helps a lot to produce nice logging:
```js
const { chromium, webkit } = require('playwright');
(async () => {
  for (const launcher of [chromium, webkit]) {
    console.log(`Testing on ${launcher.name()}`);
    const browser = await launcher.launch();
    // ...
    await browser.close();
  }
})();
``` 
						
						
					 
					
						2020-01-28 18:09:07 -08:00 
						 
				 
			
				
					
						
							
							
								Joel Einbinder 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							184b25ff7b 
							
						 
					 
					
						
						
							
							chore: windows bots via github actions ( #678 )  
						
						... 
						
						
						
						Mac will come in a follow up!
As a drive-by, removed npm build everywhere, because npm install already runs build. 
						
						
					 
					
						2020-01-28 18:04:51 -08:00 
						 
				 
			
				
					
						
							
							
								Joel Einbinder 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5e5d1933b7 
							
						 
					 
					
						
						
							
							test: don't ignore random arguments ( #726 )  
						
						... 
						
						
						
						This test was ignoring some very important arguments depending on the browser! The comment about `--enable-automation` was a lie. I changed it to ignore the userDataDir argument, which should be safe. 
						
						
					 
					
						2020-01-28 15:03:10 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
						
						
							
						
						
							c04ad140f3 
							
						 
					 
					
						
						
							
							feat(launcher): gracefully close browser on sigint ( #650 )  
						
						
						
						
					 
					
						2020-01-28 13:07:53 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							54f442e0f4 
							
						 
					 
					
						
						
							
							fix: properly expose top-level devices ( #698 )  
						
						
						
						
					 
					
						2020-01-27 17:21:39 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b4b7c5eeef 
							
						 
					 
					
						
						
							
							feat(webkit): enable user-data-dir tests for all platforms ( #646 )  
						
						... 
						
						
						
						Fixes  #560  
					
						2020-01-24 17:42:24 -08:00 
						 
				 
			
				
					
						
							
							
								Yury Semikhatsky 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b64604c1ea 
							
						 
					 
					
						
						
							
							chore: replace pptr with pw ( #643 )  
						
						
						
						
					 
					
						2020-01-24 16:15:41 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
						
						
							
						
						
							be19ae5e67 
							
						 
					 
					
						
						
							
							feat(browserApp): kill and onclose ( #641 )  
						
						
						
						
					 
					
						2020-01-24 15:58:04 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
						
						
							
						
						
							2b44d75eb6 
							
						 
					 
					
						
						
							
							test: move most launcher tests to common ( #621 )  
						
						
						
						
					 
					
						2020-01-24 11:12:57 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							056fbbd53e 
							
						 
					 
					
						
						
							
							fix(api): make pipe connection the default, expose webSocket launch option ( #562 )  
						
						
						
						
					 
					
						2020-01-23 17:45:31 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ac2ba3cbd9 
							
						 
					 
					
						
						
							
							fix(api): BrowserServer -> BrowserApp, resuse it between browsers ( #599 )  
						
						
						
						
					 
					
						2020-01-23 14:40:37 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b4209e9dc8 
							
						 
					 
					
						
						
							
							test: move user-data-dir tests into shared location ( #603 )  
						
						
						
						
					 
					
						2020-01-23 12:18:41 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							68d51a371e 
							
						 
					 
					
						
						
							
							test: add a test for usage after disconnecting ( #595 )  
						
						
						
						
					 
					
						2020-01-23 10:36:13 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fa2f321fdd 
							
						 
					 
					
						
						
							
							fix(api): remove BrowserServer.connect ( #574 )  
						
						
						
						
					 
					
						2020-01-23 08:51:43 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3269358ac8 
							
						 
					 
					
						
						
							
							feat(webkit): covert pipe to websocket when asked ( #570 )  
						
						
						
						
					 
					
						2020-01-22 17:42:10 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b388722777 
							
						 
					 
					
						
						
							
							chore: update top-level api ( #479 )  
						
						... 
						
						
						
						```
require('playwright').chromium.launch(...)
window.playwrightweb.chromium.connect(...)
``` 
						
						
					 
					
						2020-01-13 17:36:46 -08:00 
						 
				 
			
				
					
						
							
							
								Dmitry Gozman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9c966c8b19 
							
						 
					 
					
						
						
							
							feat(pw-web): introduce platform.ts to absract between node and browser platforms ( #392 )  
						
						
						
						
					 
					
						2020-01-07 11:55:24 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
						
						
							
						
						
							a7f3490e48 
							
						 
					 
					
						
						
							
							feat(testrunner): implement "dit" command ( #312 )  
						
						
						
						
					 
					
						2019-12-19 16:47:35 -07:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d570fc7809 
							
						 
					 
					
						
						
							
							feat: further strip the browser api ( #304 )  
						
						
						
						
					 
					
						2019-12-18 18:07:11 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
						
						
							
						
						
							8cc682c7b8 
							
						 
					 
					
						
						
							
							feat(testrunner): allow focusing all tests in a file  
						
						... 
						
						
						
						With this change, exporting a "fdescribe" function from a file
will focus all tests inside the file. 
						
						
					 
					
						2019-12-18 17:13:39 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6d0dfd0abf 
							
						 
					 
					
						
						
							
							feat(context): start moving overrides to the context level  
						
						
						
						
					 
					
						2019-12-18 12:23:33 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							533d058ea6 
							
						 
					 
					
						
						
							
							fix(firefox): support late attachment and skip a few failing tests ( #283 )  
						
						
						
						
					 
					
						2019-12-17 17:33:06 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bae8cd3fae 
							
						 
					 
					
						
						
							
							chrome: co-locate transport types ( #236 )  
						
						
						
						
					 
					
						2019-12-12 21:30:49 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							5822de844a 
							
						 
					 
					
						
						
							
							chore: rename common files to start with lower case  
						
						
						
						
					 
					
						2019-12-12 20:55:29 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							738502b0f0 
							
						 
					 
					
						
						
							
							fix(resize): wait for the ack when resizing gtk ( #230 )  
						
						
						
						
					 
					
						2019-12-12 17:49:48 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							6440323003 
							
						 
					 
					
						
						
							
							fix(webkit): wait for main response on subresource-free goto ( #216 )  
						
						
						
						
					 
					
						2019-12-11 16:19:37 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							357e175964 
							
						 
					 
					
						
						
							
							fix(webkit): fullPage screenshot w/o viewport ( #210 )  
						
						
						
						
					 
					
						2019-12-11 11:26:34 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							0353dbb3be 
							
						 
					 
					
						
						
							
							test: rearrange remaining launcher tests  
						
						
						
						
					 
					
						2019-12-10 19:23:21 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							fe6addc71a 
							
						 
					 
					
						
						
							
							test: rearrange launcher tests more  
						
						
						
						
					 
					
						2019-12-10 14:02:48 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							f37d9bfe95 
							
						 
					 
					
						
						
							
							test: extract chromium-specific connect tests  
						
						
						
						
					 
					
						2019-12-10 13:28:50 -08:00 
						 
				 
			
				
					
						
							
							
								Andrey Lushnikov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							329b34e894 
							
						 
					 
					
						
						
							
							feat: implement mac keyboard ( #197 )  
						
						... 
						
						
						
						This list contains all of the default keyboard shortcuts for macos, and the Objective-C selector that they trigger on the [NSStandardKeyBindingResponding](https://developer.apple.com/documentation/appkit/nsstandardkeybindingresponding/3005237-moveleft?language=objc ). We need these for basic keyboard functionality like ArrowUp and ArrowDown to work on WebKit for mac. For other browsers on mac, the same list can be used to enable better mac keyboard emulation.
The list was made by constructing NSEvents on a mac and seeing what selectors they triggered on an NSTextView. The conversion from NSEvents to DOM codes was done partially by hand as the code that does this conversion lives across many files in WebKit. There may be some errors or missing commands, but in general this should be a more faithful mac keyboard emulation than what we do in Chromium currently.
Notably absent from the list are Cut, Copy, Paste, Paste Special, Undo, and Redo. They are handled in a slightly different way. 
						
						
					 
					
						2019-12-10 13:22:01 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel 
							
						 
					 
					
						
						
						
						
							
						
						
							0884e29695 
							
						 
					 
					
						
						
							
							chore: rearrange test spec files  
						
						
						
						
					 
					
						2019-12-06 16:15:47 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2d77760f01 
							
						 
					 
					
						
						
							
							chore: move tests around after targets extraction ( #153 )  
						
						
						
						
					 
					
						2019-12-05 13:15:17 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e1c4eaae28 
							
						 
					 
					
						
						
							
							chore: make targets chromium feature ( #137 )  
						
						
						
						
					 
					
						2019-12-04 16:12:43 -08:00 
						 
				 
			
				
					
						
							
							
								Yury Semikhatsky 
							
						 
					 
					
						
						
						
						
							
						
						
							2ca2a4cb18 
							
						 
					 
					
						
						
							
							feat(launcher): throw on browser launch failure, default args ( #119 )  
						
						
						
						
					 
					
						2019-12-02 16:17:53 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ef464e447f 
							
						 
					 
					
						
						
							
							feat(input): dblclick/trippleclick feature parity ( #60 )  
						
						
						
						
					 
					
						2019-11-22 14:46:34 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							653b4b9df3 
							
						 
					 
					
						
						
							
							chore: remove SecurityDetails API ( #35 )  
						
						
						
						
					 
					
						2019-11-20 13:53:27 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							6b5ab68e70 
							
						 
					 
					
						
						
							
							test: fix failing chromium tests ( #26 )  
						
						
						
						
					 
					
						2019-11-19 13:51:09 -08:00 
						 
				 
			
				
					
						
							
							
								Pavel Feldman 
							
						 
					 
					
						
						
						
						
							
						
						
							9ba375c063 
							
						 
					 
					
						
						
							
							Initial commit  
						
						
						
						
					 
					
						2019-11-19 10:58:15 -08:00