控制台消息
ConsoleMessage 对象由页面通过 page.on('console') 事件分派。对于在页面中记录的每个控制台消息,Playwright 上下文中都会有相应的事件。
// Listen for all console logs
page.on('console', msg => console.log(msg.text()));
// Listen for all console events and handle errors
page.on('console', msg => {
if (msg.type() === 'error')
console.log(`Error text: "${msg.text()}"`);
});
// Get the next console log
const msgPromise = page.waitForEvent('console');
await page.evaluate(() => {
console.log('hello', 42, { foo: 'bar' }); // Issue console.log inside the page
});
const msg = await msgPromise;
// Deconstruct console log arguments
await msg.args()[0].jsonValue(); // hello
await msg.args()[1].jsonValue(); // 42
方法
args
在 v1.9 之前添加传递给 console
函数调用的参数列表。另请参阅 page.on('console')。
用法
consoleMessage.args();
返回值
location
在 v1.9 之前添加用法
consoleMessage.location();
返回值
page
添加于:v1.34生成此控制台消息的页面(如果有)。
用法
consoleMessage.page();
返回值
text
在 v1.9 之前添加控制台消息的文本。
用法
consoleMessage.text();
返回值
type
在 v1.9 之前添加以下值之一:'log'
、'debug'
、'info'
、'error'
、'warning'
、'dir'
、'dirxml'
、'table'
、'trace'
、'clear'
、'startGroup'
、'startGroupCollapsed'
、'endGroup'
、'assert'
、'profile'
、'profileEnd'
、'count'
、'timeEnd'
。
用法
consoleMessage.type();
返回值