We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Code:
const ChromeLauncher = require('chrome-launcher');
ChromeLauncher.launch({ startingUrl: 'https://google.com/', chromeFlags: ["--remote-debugging-pipe"] }).then(() => { console.log(success); });
success
Here is the output of the result. node:internal/process/promises:279 triggerUncaughtException(err, true /* fromPromise */); ^
Error: connect ECONNREFUSED 127.0.0.1:3399 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -4078, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 3399 }
Process finished with exit code 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test Code:
const ChromeLauncher = require('chrome-launcher');
ChromeLauncher.launch({
startingUrl: 'https://google.com/',
chromeFlags: ["--remote-debugging-pipe"]
}).then(() => {
console.log(
success
);});
Here is the output of the result.
node:internal/process/promises:279
triggerUncaughtException(err, true /* fromPromise */);
^
Error: connect ECONNREFUSED 127.0.0.1:3399
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) {
errno: -4078,
code: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 3399
}
Process finished with exit code 1
The text was updated successfully, but these errors were encountered: