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-02-25 22:03:39 -08:00
```java
page.onWorker(worker -> {
System.out.println("Worker created: " + worker.url());
worker.onClose(worker1 -> System.out.println("Worker destroyed: " + worker1.url()));
});
System.out.println("Current workers:");
for (Worker worker : page.workers())
System.out.println(" " + 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-03-04 19:05:50 +01:00
```csharp
2021-05-14 16:50:35 +02:00
page.Worker += (_, worker) =>
2021-03-04 19:05:50 +01:00
{
Console.WriteLine($"Worker created: {worker.Url}");
worker.Close += (_, _) => Console.WriteLine($"Worker closed {worker.Url}");
};
Console.WriteLine("Current Workers:");
2021-05-14 16:50:35 +02:00
foreach(var pageWorker in page.Workers)
2021-03-04 19:05:50 +01:00
{
Console.WriteLine($"\tWorker: {pageWorker.Url}");
}
```
2021-01-07 11:46:05 -08:00
## event: Worker.close
2021-02-25 22:22:47 -08:00
- argument: < [Worker]>
2021-01-07 11:46:05 -08:00
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-25 22:22:47 -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
2021-02-01 11:43:26 -08:00
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-02-03 18:25:06 -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
2021-02-25 22:22:47 -08:00
[`method: Worker.evaluateHandle` ] is that [`method: Worker.evaluateHandle` ]
2021-02-01 11:43:26 -08:00
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-02-03 18:25:06 -08:00
Optional argument to pass to [`param: expression` ].
2021-01-07 11:46:05 -08:00
## method: Worker.url
- returns: < [string]>
2021-02-04 21:15:14 -08:00
2021-03-08 10:09:18 +01:00
## async method: Worker.waitForClose
2021-02-04 21:15:14 -08:00
* langs: csharp, java
- returns: < [Worker]>
Performs action and waits for the Worker to close.
### option: Worker.waitForClose.timeout = %%-wait-for-event-timeout-%%