module Playwright::ConsoleMessage
Overview
ConsoleMessage objects are dispatched by page via the page.on('console') event.
Defined in:
playwright/consolemessage.crInstance Method Summary
- #args : Array(JSHandle)
- #location : Location
- #text : String
-
#type : String
One of the following values:
'log'
,'debug'
,'info'
,'error'
,'warning'
,'dir'
,'dirxml'
,'table'
,'trace'
,'clear'
,'startGroup'
,'startGroupCollapsed'
,'endGroup'
,'assert'
,'profile'
,'profileEnd'
,'count'
,'timeEnd'
.
Instance Method Detail
abstract
def type : String
#
One of the following values: 'log'
, 'debug'
, 'info'
, 'error'
, 'warning'
, 'dir'
, 'dirxml'
, 'table'
, 'trace'
, 'clear'
, 'startGroup'
, 'startGroupCollapsed'
, 'endGroup'
, 'assert'
, 'profile'
, 'profileEnd'
, 'count'
, 'timeEnd'
.