2021-01-07 11:46:05 -08:00
# class: Worker
The Worker class represents a [WebWorker ](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API ). `worker`
event is emitted on the page object to signal a worker creation. `close` event is emitted on the worker object when the
worker is gone.
```js
page.on('worker', worker => {
console.log('Worker created: ' + worker.url());
worker.on('close', worker => console.log('Worker destroyed: ' + worker.url()));
});
console.log('Current workers:');
for (const worker of page.workers())
console.log(' ' + worker.url());
```
2021-01-14 07:48:56 -08:00
```py
def handle_worker(worker):
print("worker created: " + worker.url)
worker.on("close", lambda: print("worker destroyed: " + worker.url))
page.on('worker', handle_worker)
print("current workers:")
for worker in page.workers:
print(" " + worker.url)
```
2021-01-07 11:46:05 -08:00
## event: Worker.close
- type: < [Worker]>
Emitted when this dedicated [WebWorker ](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API ) is terminated.
## async method: Worker.evaluate
- returns: < [Serializable]>
2021-02-01 11:43:26 -08:00
Returns the return value of [`param: expression` ].
2021-01-07 11:46:05 -08:00
2021-02-01 11:43:26 -08:00
If the function passed to the [`method: Worker.evaluate` ] returns a [Promise], then [`method: Worker.evaluate` ] would wait for the promise
2021-01-07 11:46:05 -08:00
to resolve and return its value.
2021-02-01 11:43:26 -08:00
If the function passed to the [`method: Worker.evaluate` ] returns a non-[Serializable] value, then [`method: Worker.evaluate` ] returns `undefined` . Playwright also supports transferring some
additional values that are not serializable by `JSON` : `-0` , `NaN` , `Infinity` , `-Infinity` .
2021-01-07 11:46:05 -08:00
2021-01-28 17:51:41 -08:00
### param: Worker.evaluate.expression = %%-evaluate-expression-%%
2021-01-07 11:46:05 -08:00
### param: Worker.evaluate.arg
- `arg` < [EvaluationArgument]>
2021-01-29 16:02:17 -08:00
Optional argument to pass to [`param: expression` ]
2021-01-07 11:46:05 -08:00
## async method: Worker.evaluateHandle
- returns: < [JSHandle]>
2021-02-01 11:43:26 -08:00
Returns the return value of [`param: expression` ] as a [JSHandle].
2021-01-07 11:46:05 -08:00
2021-02-01 11:43:26 -08:00
The only difference between [`method: Worker.evaluate` ] and
[`method: Worker.evaluateHandle` ] is that [`method: Worker.evaluateHandle` ]
returns [JSHandle].
2021-01-07 11:46:05 -08:00
2021-02-01 11:43:26 -08:00
If the function passed to the [`method: Worker.evaluateHandle` ] returns a [Promise], then [`method: Worker.evaluateHandle` ] would wait for
2021-01-07 11:46:05 -08:00
the promise to resolve and return its value.
2021-01-28 17:51:41 -08:00
### param: Worker.evaluateHandle.expression = %%-evaluate-expression-%%
2021-01-07 11:46:05 -08:00
### param: Worker.evaluateHandle.arg
- `arg` < [EvaluationArgument]>
2021-01-29 16:02:17 -08:00
Optional argument to pass to [`param: expression` ]
2021-01-07 11:46:05 -08:00
## method: Worker.url
- returns: < [string]>