--kiosk
What does --kiosk do?
Enable kiosk mode. Please note this is not Chrome OS kiosk mode.
Usage
CLILaunch Chrome with --kiosk using CLI
chrome --kioskPuppeteerLaunch Chrome with --kiosk using Puppeteer
const browser = await puppeteer.launch({
args: ['--kiosk']
});PlaywrightLaunch Chrome with --kiosk using Playwright
const browser = await chromium.launch({
args: ['--kiosk']
});SeleniumLaunch Chrome with --kiosk using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--kiosk')
driver = webdriver.Chrome(options=options)