Summary
Updated browser from Chrome 135 -> Chrome 136
It seems like the promise returned by the launch method never resolves.
chrome-launcher version: 1.2.0
Code snippet
import {
launch
} from 'chrome-launcher';
........
console.log(chromePath); // ------> this is 100% correct
const result = await launch({
ignoreDefaultFlags: true,
port: PORT,
userDataDir: false,
chromePath,
chromeFlags: FLAGS,
});
console.log('hello', result); // -------> never prints anything
Any advice on how to tackle this issue ?
Summary
Updated browser from Chrome 135 -> Chrome 136
It seems like the promise returned by the
launchmethod never resolves.chrome-launcher version: 1.2.0
Code snippet
Any advice on how to tackle this issue ?