docs/src/api/class-worker.md
The Worker class represents a WebWorker. 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.
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());
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());
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)
page.Worker += (_, worker) =>
{
Console.WriteLine($"Worker created: {worker.Url}");
worker.Close += (_, _) => Console.WriteLine($"Worker closed {worker.Url}");
};
Console.WriteLine("Current Workers:");
foreach(var pageWorker in page.Workers)
{
Console.WriteLine($"\tWorker: {pageWorker.Url}");
}
Emitted when this dedicated WebWorker is terminated.
Emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir.
Returns the return value of [param: expression].
If the function passed to the [method: Worker.evaluate] returns a [Promise], then [method: Worker.evaluate] would wait for the promise
to resolve and return its value.
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.
arg ?<[EvaluationArgument]>Optional argument to pass to [param: expression].
Returns the return value of [param: expression] as a [JSHandle].
The only difference between [method: Worker.evaluate] and
[method: Worker.evaluateHandle] is that [method: Worker.evaluateHandle]
returns [JSHandle].
If the function passed to the [method: Worker.evaluateHandle] returns a [Promise], then [method: Worker.evaluateHandle] would wait for
the promise to resolve and return its value.
arg ?<[EvaluationArgument]>Optional argument to pass to [param: expression].
Performs action and waits for the Worker to close.
Performs action and waits for a console message.
predicate <[function]([ConsoleMessage]):[boolean]>Receives the [ConsoleMessage] object and resolves to true when the waiting should resolve.
Waits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy value. Will throw an error if the page is closed before the event is fired. Returns the event data value.
Usage
// Start waiting for download before clicking. Note no await.
const consolePromise = worker.waitForEvent('console');
await worker.evaluate('console.log(42)');
const consoleMessage = await consolePromise;
async with worker.expect_event("console") as event_info:
await worker.evaluate("console.log(42)")
message = await event_info.value
with worker.expect_event("console") as event_info:
worker.evaluate("console.log(42)")
message = event_info.value
optionsOrPredicate ?<[function]|[Object]>
predicate <[function]> Receives the event data and resolves to truthy value when the waiting should resolve.timeout ?<[float]> Maximum time to wait for in milliseconds. Defaults to 0 - no timeout. The default value can be changed via actionTimeout option in the config, or by using the [method: BrowserContext.setDefaultTimeout] or [method: Page.setDefaultTimeout] methods.Either a predicate that receives an event or an options object. Optional.