Console - puppeteerApp
Application Console, a floating window that displays output information. Similar to the browser console. First letter is capitalized.
Console.log
Output information to the application console. log
Kind: static property of Console
Param | Type | Description |
---|---|---|
...values | any | (Values to output) |
Console.warn
Output warning information to the application console warn
Kind: static property of Console
Param | Type | Description |
---|---|---|
...values | any | (Values to output) |
Console.error
Output error information to the application console error
Kind: static property of Console
Param | Type | Description |
---|---|---|
...values | any | (Values to output) |
Console.clear
Clear the application console
Kind: static property of Console
Console.open
Open the application console
Kind: static property of Console
Console.show
Show the application console
Kind: static property of Console
Console.hide
Hide the application console
Kind: static property of Console
Param | Type | Description |
---|---|---|
delay | number | (Delay time) |
Console.showLine
Show the line number in the application console
Kind: static property of Console
Console.hideLine
Hide the line number in the application console
Kind: static property of Console
Console.showTime
Show timestamps in the application console
Kind: static property of Console
Console.hideTime
Hide timestamps in the application console