Skip to main content

Worker

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.

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)

方法 (Methods)

evaluate

Added before v1.9 worker.evaluate

Returns the return value of expression.

If the function passed to the worker.evaluate() returns a Promise, then worker.evaluate() would wait for the promise to resolve and return its value.

If the function passed to the worker.evaluate() returns a non-Serializable value, then worker.evaluate() returns undefined. Playwright also supports transferring some additional values that are not serializable by JSON: -0, NaN, Infinity, -Infinity.

使用方式

worker.evaluate(expression)
worker.evaluate(expression, **kwargs)

參數

  • expression str#

    JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.

  • arg EvaluationArgument (optional)#

    Optional argument to pass to expression.

傳回值


evaluate_handle

Added before v1.9 worker.evaluate_handle

Returns the return value of expression as a JSHandle.

The only difference between worker.evaluate() and worker.evaluate_handle() is that worker.evaluate_handle() returns JSHandle.

If the function passed to the worker.evaluate_handle() returns a Promise, then worker.evaluate_handle() would wait for the promise to resolve and return its value.

使用方式

worker.evaluate_handle(expression)
worker.evaluate_handle(expression, **kwargs)

參數

  • expression str#

    JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.

  • arg EvaluationArgument (optional)#

    Optional argument to pass to expression.

傳回值


屬性 (Properties)

url

Added before v1.9 worker.url

使用方式

worker.url

傳回值


事件 (Events)

on("close")

Added before v1.9 worker.on("close")

Emitted when this dedicated WebWorker is terminated.

使用方式

worker.on("close", handler)

事件資料