34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
1.1 KiB
1.1 KiB
Home > puppeteer > JSHandle > evaluate
JSHandle.evaluate() method
This method passes this handle as the first argument to pageFunction
. If pageFunction
returns a Promise, then handle.evaluate
would wait for the promise to resolve and return its value.
Signature:
evaluate<T extends EvaluateFn<HandleObjectType>>(pageFunction: T | string, ...args: SerializableOrJSHandle[]): Promise<UnwrapPromiseLike<EvaluateFnReturnType<T>>>;
Parameters
Parameter | Type | Description |
---|---|---|
pageFunction | T | string | |
args | SerializableOrJSHandle[] |
Returns:
Promise<UnwrapPromiseLike<EvaluateFnReturnType<T>>>
Example
const tweetHandle = await page.$('.tweet .retweets');
expect(await tweetHandle.evaluate(node => node.innerText)).toBe('10');