module Playwright::ConsoleMessage

Overview

ConsoleMessage objects are dispatched by page via the page.on('console') event.

Defined in:

playwright/consolemessage.cr

Instance Method Summary

Instance Method Detail

abstract def args : Array(JSHandle) #

[View source]
abstract def location : Location #

[View source]
abstract def text : String #

[View source]
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'.


[View source]