You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GOOD Playwright Version: [what Playwright version worked nicely?] 1.8
BAD Playwright Version: [what Playwright version doesn't work any more?] 1.17
Operating System: [e.g. Windows, Linux or Mac] Ubuntu
Extra: [any specific details about your environment]
Code Snippet
functionadd(...addends){returnaddends.reduce((accumulator,currentValue)=>accumulator+currentValue);}constfunctionResult=awaitpage.evaluate(`${add.toString()} var result = add(1, 2, 3); Promise.resolve(result); `);