Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--native

What does --native do?

No description available for this flag.

Usage

CLILaunch Chrome with --native using CLI

chrome --native

PuppeteerLaunch Chrome with --native using Puppeteer

const browser = await puppeteer.launch({
  args: ['--native']
});

PlaywrightLaunch Chrome with --native using Playwright

const browser = await chromium.launch({
  args: ['--native']
});

SeleniumLaunch Chrome with --native using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--native')

driver = webdriver.Chrome(options=options)