Closed DaveRingelnatz closed 4 years ago
Most likely it is V8
live edit bug, please file this bug on crbug.com/v8
.
cc @hashseed
It seems to work now. I found out that I have to exclude internal puppeteer scripts from beeing changed which can be done like this (which is of course nowhere documented :) ):
if (scriptInfos.url !== '__puppeteer_evaluation_script__') {
Nevertheless I have 2 additional questions:
This repository is related to Chrome DevTools Protocol, but does not track issues regarding its definition or implementation. If you want to file an issue for the Chrome DevTools Protocol, please open an issue on https://crbug.com under component: Platform>DevTools>Platform
. Thanks in advance!
Hey all,
I don't know if I am at the right place here, because I think the problem most probably lies in puppeteer but the issue template of puppeteer brought me here.
Problem description:
As soon as I try to use the Debugger.setScriptSource function, my Chromium crashes. Same happens, if I run the sample code on https://try-puppeteer.appspot.com/.
Sample script:
`const puppeteer = require('puppeteer');
(async() => { const browser = await puppeteer.launch(); const page = await browser.newPage();
})();`
(Code formatting does not work correctly somehow)
Error Message:
Any ideas what could be the problem?
Thanks and greetings
Dave