Provides six browsers to Karma:
Chromium
ChromiumHeadless
Firefox
FirefoxHeadless
WebKit
WebKitHeadless
Powered by Playwright.
Playwright supports device emulation to control various aspects of the browser. This is probably more important for E2E testing than unit testing, but some configuration (like locale and timezone) may be useful for unit testing as well.
You can control these settings by providing device
and/or contextOptions
in karma.conf.js
.
...
customLaunchers: {
iPhone: {
base: 'WebKit',
displayName: 'iPhone',
device: 'iPhone 6',
contextOptions: {
locale: 'sv-SE'
}
}
},
browsers: [
'iPhone',
],
...
The "real" Chrome, Edge or custom versions of the browsers can be configured by providing
launchOptions
in your Karma
configuration. The browsers must be downloaded and installed manually.
...
customLaunchers: {
EdgeHeadless: {
base: 'ChromiumHeadless',
displayName: 'EdgeHeadless',
launchOptions: {
channel: 'msedge'
}
}
},
browsers: [
'ChromiumHeadless',
'EdgeHeadless',
'FirefoxHeadless',
'WebKitHeadless',
],
...
Valid values for the channel
option are: chrome
, chrome-beta
, chrome-dev
, chrome-canary
, msedge
,
msedge-beta
, msedge-dev
, msedge-canary
.
Each Playwright release bundles specific versions of Chromium, Firefox and WebKit. If you use
Yarn or
pnpm, it's possible you may lock the version of the playwright
package
in order to force a specific version. npm does not
support this yet, but there is a package available that might work.
See the Playwright Release Notes for what browsers are bundled.
- Martin Blom: Now uses the Karma decorators and event handling instead of a custom class.
- Martin Blom: Fixed typo. Bumped rev.
- Martin Blom: Publish forked package as
@onslip/karma-playwright-launcher
. - Martin Blom: Added device emulation support.
- Martin Blom: Relaxed required playwright version and added note about pinning.
- Martin Blom: Provide both headful and headless browsers, support custom launch options.
- Emil Björklund: Add guard for missing browser.
- Joel Einbinder/Endy Jasmi: Original version, published as
karma-playwright-launcher
.