.captureBrowserConsoleLogs() 建议编辑
自: 2.2.0监听 console
事件(例如 console.log
事件)并注册回调函数以处理相同事件。
用法
.captureBrowserConsoleLogs(onEventCallback)
示例
describe('capture console events', function() {
it('captures and logs console.log event', function() {
browser
.captureBrowserConsoleLogs((event) => {
console.log(event.type, event.timestamp, event.args[0].value);
})
.navigateTo('https://www.google.com')
.executeScript(function() {
console.log('here');
}, []);
});
});
参数
名称 | 类型 | 描述 |
---|---|---|
onEventCallback |
函数 | 每次捕获到新的控制台事件时调用的回调函数。 |