Chrome Flags Reference

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

--disable-wayland-ime

What does --disable-wayland-ime do?

Disable wayland input method editor.

Usage

CLILaunch Chrome with --disable-wayland-ime using CLI

chrome --disable-wayland-ime

PuppeteerLaunch Chrome with --disable-wayland-ime using Puppeteer

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

PlaywrightLaunch Chrome with --disable-wayland-ime using Playwright

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

SeleniumLaunch Chrome with --disable-wayland-ime using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-wayland-ime')

driver = webdriver.Chrome(options=options)