ConsoleMessage
ConsoleMessage 对象通过 page.on("console") 事件按页分派。对于页面中记录的每条控制台消息,Playwright 上下文中都会有相应的事件。
¥ConsoleMessage objects are dispatched by page via the page.on("console") event. For each console message logged in the page there will be corresponding event in the Playwright context.
- Sync
- Async
# 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
属性
¥Properties
args
Added before v1.9传递给 console
函数调用的参数列表。另见 page.on("console")。
¥List of arguments passed to a console
function call. See also page.on("console").
用法
¥Usage
console_message.args
返回
¥Returns
location
Added before v1.9用法
¥Usage
console_message.location
返回
¥Returns
资源的 URL。
¥URL of the resource.
lineNumber
int
资源中从 0 开始的行号。
¥0-based line number in the resource.
columnNumber
int
资源中从 0 开始的列号。
¥0-based column number in the resource.
page
Added in: v1.34生成此控制台消息的页面(如果有)。
¥The page that produced this console message, if any.
用法
¥Usage
console_message.page
返回
¥Returns
text
Added before v1.9控制台消息的文本。
¥The text of the console message.
用法
¥Usage
console_message.text
返回
¥Returns
type
Added before v1.9以下值之一:'log'
、'debug'
、'info'
、'error'
、'warning'
、'dir'
、'dirxml'
、'table'
、'trace'
、'clear'
、'startGroup'
、'startGroupCollapsed'
、'endGroup'
、'assert'
、'profile'
、'profileEnd'
、'count'
、'timeEnd'
。
¥One of the following values: 'log'
, 'debug'
, 'info'
, 'error'
, 'warning'
, 'dir'
, 'dirxml'
, 'table'
, 'trace'
, 'clear'
, 'startGroup'
, 'startGroupCollapsed'
, 'endGroup'
, 'assert'
, 'profile'
, 'profileEnd'
, 'count'
, 'timeEnd'
.
用法
¥Usage
console_message.type
返回
¥Returns