"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[99379],{3905:function(e,t,n){n.d(t,{Zo:function(){return c},kt:function(){return m}});var a=n(67294);function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function o(e){for(var t=1;t=0||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}var u=a.createContext({}),i=function(e){var t=a.useContext(u),n=t;return e&&(n="function"==typeof e?e(t):o(o({},t),e)),n},c=function(e){var t=i(e.components);return a.createElement(u.Provider,{value:t},e.children)},d={inlineCode:"code",wrapper:function(e){var t=e.children;return a.createElement(a.Fragment,{},t)}},s=a.forwardRef((function(e,t){var n=e.components,r=e.mdxType,l=e.originalType,u=e.parentName,c=p(e,["components","mdxType","originalType","parentName"]),s=i(n),m=r,x=s["".concat(u,".").concat(m)]||s[m]||d[m]||l;return n?a.createElement(x,o(o({ref:t},c),{},{components:n})):a.createElement(x,o({ref:t},c))}));function m(e,t){var n=arguments,r=t&&t.mdxType;if("string"==typeof e||r){var l=n.length,o=new Array(l);o[0]=s;var p={};for(var u in t)hasOwnProperty.call(t,u)&&(p[u]=t[u]);p.originalType=e,p.mdxType="string"==typeof e?e:r,o[1]=p;for(var i=2;i"," ",(0,l.kt)("a",{parentName:"p",href:"/puppeteer/docs/10.0.0/puppeteer"},"puppeteer")," ",">"," ",(0,l.kt)("a",{parentName:"p",href:"/puppeteer/docs/10.0.0/puppeteer.executioncontext"},"ExecutionContext")," ",">"," ",(0,l.kt)("a",{parentName:"p",href:"/puppeteer/docs/10.0.0/puppeteer.executioncontext.evaluatehandle"},"evaluateHandle")),(0,l.kt)("h2",{id:"executioncontextevaluatehandle-method"},"ExecutionContext.evaluateHandle() method"),(0,l.kt)("b",null,"Signature:"),(0,l.kt)("pre",null,(0,l.kt)("code",{parentName:"pre",className:"language-typescript"},"evaluateHandle(pageFunction: EvaluateHandleFn, ...args: SerializableOrJSHandle[]): Promise;\n")),(0,l.kt)("h2",{id:"parameters"},"Parameters"),(0,l.kt)("table",null,(0,l.kt)("thead",{parentName:"table"},(0,l.kt)("tr",{parentName:"thead"},(0,l.kt)("th",{parentName:"tr",align:null},"Parameter"),(0,l.kt)("th",{parentName:"tr",align:null},"Type"),(0,l.kt)("th",{parentName:"tr",align:null},"Description"))),(0,l.kt)("tbody",{parentName:"table"},(0,l.kt)("tr",{parentName:"tbody"},(0,l.kt)("td",{parentName:"tr",align:null},"pageFunction"),(0,l.kt)("td",{parentName:"tr",align:null},(0,l.kt)("a",{parentName:"td",href:"/puppeteer/docs/10.0.0/puppeteer.evaluatehandlefn"},"EvaluateHandleFn")),(0,l.kt)("td",{parentName:"tr",align:null},"a function to be evaluated in the ",(0,l.kt)("code",null,"executionContext"))),(0,l.kt)("tr",{parentName:"tbody"},(0,l.kt)("td",{parentName:"tr",align:null},"args"),(0,l.kt)("td",{parentName:"tr",align:null},(0,l.kt)("a",{parentName:"td",href:"/puppeteer/docs/10.0.0/puppeteer.serializableorjshandle"},"SerializableOrJSHandle"),"[","]"),(0,l.kt)("td",{parentName:"tr",align:null},"argument to pass to the page function")))),(0,l.kt)("b",null,"Returns:"),(0,l.kt)("p",null,"Promise","<","HandleType",">"),(0,l.kt)("p",null,"A promise that resolves to the return value of the given function as an in-page object (a ",(0,l.kt)("a",{parentName:"p",href:"/puppeteer/docs/10.0.0/puppeteer.jshandle"},"JSHandle"),")."),(0,l.kt)("h2",{id:"remarks"},"Remarks"),(0,l.kt)("p",null,"The only difference between ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.evaluate")," and ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.evaluateHandle")," is that ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.evaluateHandle")," returns an in-page object (a ",(0,l.kt)("a",{parentName:"p",href:"/puppeteer/docs/10.0.0/puppeteer.jshandle"},"JSHandle"),"). If the function passed to the ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.evaluateHandle")," returns a Promise, then ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.evaluateHandle")," would wait for the promise to resolve and return its value."),(0,l.kt)("h2",{id:"example-1"},"Example 1"),(0,l.kt)("pre",null,(0,l.kt)("code",{parentName:"pre",className:"language-js"},"const context = await page.mainFrame().executionContext();\nconst aHandle = await context.evaluateHandle(() => Promise.resolve(self));\naHandle; // Handle for the global object.\n\n")),(0,l.kt)("h2",{id:"example-2"},"Example 2"),(0,l.kt)("p",null,"A string can also be passed in instead of a function."),(0,l.kt)("pre",null,(0,l.kt)("code",{parentName:"pre",className:"language-js"},"// Handle for the '3' * object.\nconst aHandle = await context.evaluateHandle('1 + 2');\n\n")),(0,l.kt)("h2",{id:"example-3"},"Example 3"),(0,l.kt)("p",null,"JSHandle instances can be passed as arguments to the ",(0,l.kt)("inlineCode",{parentName:"p"},"executionContext.* evaluateHandle"),":"),(0,l.kt)("pre",null,(0,l.kt)("code",{parentName:"pre",className:"language-js"},"const aHandle = await context.evaluateHandle(() => document.body);\nconst resultHandle = await context.evaluateHandle(body => body.innerHTML, * aHandle);\nconsole.log(await resultHandle.jsonValue()); // prints body's innerHTML\nawait aHandle.dispose();\nawait resultHandle.dispose();\n\n")))}s.isMDXComponent=!0}}]);