浏览器addInitScript此页面上的内容addInitScript回调函数用于将数据从浏览器发送回 Node.js 环境。为了接收回调函数返回的数据,您必须监听 data 事件,例如: const script = await browser.addInitScript((emit) => { emit('hello')})script.on('data', (data) => { console.log(data) // prints: hello}) 用法 browser.addInitScript(data) 参数 名称类型详细信息数据任何要发出的数据。