Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/plugins/execute-js/README.md
1026 views
import agent from 'secret-agent'; import ExecuteJsPlugin from '@secret-agent/execute-js-plugin'; agent.use(ExecuteJsPlugin); (function run() { await agent.goto('https://news.ycombinator.com'); const title = await agent.executeJs(() => { return window.document.title; }); })();