playwright/utils/testserver
Dmitry Gozman 66b5cf5ae1
feat(remote): make PlaywrightServer work with browserType.connect (#11849)
This changes PlaywrigtServer to serve connections like `ws://localhost:3333/?browser=chromium`:
- launches the browser;
- talks `browserType.connect`-style protocol over websocket;
- compatible with `connectOptions` fixture.

```js
await playwright.chromium.connect({ wsEndpoint: 'ws://localhost:3333/?browser=chrome' });
```
2022-02-10 16:36:23 -08:00
..
cert.pem Initial commit 2019-11-19 10:58:15 -08:00
index.d.ts fix: support connectOverCDP over https (#8703) 2021-09-03 17:52:22 -07:00
index.js feat(remote): make PlaywrightServer work with browserType.connect (#11849) 2022-02-10 16:36:23 -08:00
key.pem Initial commit 2019-11-19 10:58:15 -08:00
README.md docs: some syntax fixes (#2116) 2020-05-07 12:33:35 -07:00
run_static_server.js chore: repair run_static_server.js (#6298) 2021-04-23 11:42:54 -07:00

TestServer

This test server is used internally by Playwright to test Playwright itself.

Example

const {TestServer} = require('.');

(async () => {
  const httpServer = await TestServer.create(__dirname, 8000);
  const httpsServer = await TestServer.createHTTPS(__dirname, 8001);
  httpServer.setRoute('/hello', (req, res) => {
    res.end('Hello, world!');
  });
  console.log('HTTP and HTTPS servers are running!');
})();