You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot seem to capture console messages from my web page. My web page has several console messages that I need to trap in order to trigger a screen capture. Everything else seems to be working great. If you could give me an example of "onConsole", that would propel me forward. Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I have also tried to capture and save browser console messages in the text file using the following code.
But this code not works.
await mainTab.onConsole(async function(e){
console.log(e[0].value)
fs.writeFileSync('postedtoday.txt', e[0].value , {"encoding":'utf8'});
})
I have log my test messages like this. console.log('test message');
I need to save test message in postedtoday.txt file.I can't understand the onConsole function work flow.Please help me to solve my issue.
Howdy! I like you library.
I cannot seem to capture console messages from my web page. My web page has several console messages that I need to trap in order to trigger a screen capture. Everything else seems to be working great. If you could give me an example of "onConsole", that would propel me forward. Thanks!
The text was updated successfully, but these errors were encountered: