Chrome Flags Reference

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

--enable-wayland-ime

What does --enable-wayland-ime do?

Try to enable wayland input method editor.

Usage

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

chrome --enable-wayland-ime

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

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

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

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

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

from selenium import webdriver

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

driver = webdriver.Chrome(options=options)