BrowserServer
Methods
close
Added before v1.9Closes the browser gracefully and makes sure the process is terminated.
Usage
await browserServer.close();
Returns
kill
Added before v1.9Kills the browser process and waits for the process to exit.
Usage
await browserServer.kill();
Returns
process
Added before v1.9Spawned browser application process.
Usage
browserServer.process();
Returns
wsEndpoint
Added before v1.9Browser websocket url.
Browser websocket endpoint which can be used as an argument to browserType.connect() to establish connection to the browser.
Usage
browserServer.wsEndpoint();
Returns
Events
on('close')
Added before v1.9Emitted when the browser server closes.
Usage
browserServer.on('close', data => {});