I am new to JS and web framework - I am trying to work with Chrome instance from Puppeteer.
The instance always opens up in a "pale looking Chrome icon" like this:

I suppressed "Chrome is being controlled by automated test software" with ignoreDefaultArgs: ['--enable-automation'] but to no avail.
My questions are following -
?
opens up?
instead of
?(async () => {
const browser = await puppeteer.launch({
headless: false,
ignoreDefaultArgs: ['--enable-automation'],
args: ['--no-sandbox',
'--disable-setuid-sandbox',
'--mute-audio',
'--disable-web-security']
});