我正在使用 chrome-remote-interface 节点包远程访问 Angular 应用程序。为了评估返回 Promise 的表达式,我使用以下代码片段:
Runtime.evaluate({expression, awaitPromise: true, returnByValue: true});
我收到以下错误消息:
Error: Result of the evaluation is not a promise
我知道,zone.js 正在使用 ZoneAwarePromise 对 Promise 进行猴子修补。这可能是原因,还是我做错了什么?有没有办法使用原生 Promise?