--native
What does --native do?
No description available for this flag.
Usage
CLILaunch Chrome with --native using CLI
chrome --nativePuppeteerLaunch 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)