ConsoleMessage
ConsoleMessage 对象由页面通过 page.on("console") 事件分发。对于页面中记录的每个控制台消息,Playwright上下文中都会有相应的事件。
- Sync
- 异步
# Listen for all console logs
page.on("console", lambda msg: print(msg.text))
# Listen for all console events and handle errors
page.on("console", lambda msg: print(f"error: {msg.text}") if msg.type == "error" else None)
# Get the next console log
with page.expect_console_message() as msg_info:
# Issue console.log inside the page
page.evaluate("console.log('hello', 42, { foo: 'bar' })")
msg = msg_info.value
# Deconstruct print arguments
msg.args[0].json_value() # hello
msg.args[1].json_value() # 42
# Listen for all console logs
page.on("console", lambda msg: print(msg.text))
# Listen for all console events and handle errors
page.on("console", lambda msg: print(f"error: {msg.text}") if msg.type == "error" else None)
# Get the next console log
async with page.expect_console_message() as msg_info:
# Issue console.log inside the page
await page.evaluate("console.log('hello', 42, { foo: 'bar' })")
msg = await msg_info.value
# Deconstruct print arguments
await msg.args[0].json_value() # hello
await msg.args[1].json_value() # 42
属性
参数
Added before v1.9传递给console
函数调用的参数列表。另请参阅page.on("console")。
用法
console_message.args
返回
位置
Added before v1.9用法
console_message.location
返回
页面
Added in: v1.34生成此控制台消息的页面(如果有的话)。
用法
console_message.page
返回
文本
Added before v1.9控制台消息的文本。
用法
console_message.text
返回
类型
Added before v1.9以下值之一:'log'
, 'debug'
, 'info'
, 'error'
, 'warning'
, 'dir'
, 'dirxml'
, 'table'
, 'trace'
, 'clear'
, 'startGroup'
, 'startGroupCollapsed'
, 'endGroup'
, 'assert'
, 'profile'
, 'profileEnd'
, 'count'
, 'timeEnd'
.
用法
console_message.type
返回