2021-12-14 17:17:01 +01:00
|
|
|
import { afterLocalSuite, beforeLocalSuite, beforeLocalSession } from './src/utils'
|
2021-09-03 10:27:04 +02:00
|
|
|
import { config as mainConfig } from './wdio.main.conf'
|
|
|
|
|
|
|
|
const prefs = {
|
|
|
|
'intl.accept_languages': 'en'
|
|
|
|
}
|
|
|
|
|
2021-11-24 10:49:12 +01:00
|
|
|
// Chrome headless does not support prefs
|
|
|
|
process.env.LANG = 'en'
|
|
|
|
|
2023-02-27 10:44:32 +01:00
|
|
|
// https://github.com/mozilla/geckodriver/issues/1354#issuecomment-479456411
|
|
|
|
process.env.MOZ_HEADLESS_WIDTH = '1280'
|
|
|
|
process.env.MOZ_HEADLESS_HEIGHT = '1024'
|
|
|
|
|
|
|
|
const windowSizeArg = `--window-size=${process.env.MOZ_HEADLESS_WIDTH},${process.env.MOZ_HEADLESS_HEIGHT}`
|
|
|
|
|
2021-09-03 10:27:04 +02:00
|
|
|
module.exports = {
|
|
|
|
config: {
|
|
|
|
...mainConfig,
|
|
|
|
|
|
|
|
runner: 'local',
|
|
|
|
|
|
|
|
maxInstances: 1,
|
|
|
|
specFileRetries: 0,
|
|
|
|
|
|
|
|
capabilities: [
|
2023-07-12 13:39:37 +02:00
|
|
|
{
|
|
|
|
'browserName': 'chrome',
|
|
|
|
'acceptInsecureCerts': true,
|
|
|
|
'goog:chromeOptions': {
|
2023-07-13 13:37:10 +02:00
|
|
|
args: [ '--headless', '--disable-gpu', windowSizeArg ],
|
2023-07-12 13:39:37 +02:00
|
|
|
prefs
|
|
|
|
}
|
|
|
|
},
|
2023-02-27 10:44:32 +01:00
|
|
|
{
|
2023-05-24 15:27:15 +02:00
|
|
|
'browserName': 'firefox',
|
2023-02-27 10:44:32 +01:00
|
|
|
'moz:firefoxOptions': {
|
|
|
|
binary: '/usr/bin/firefox-developer-edition',
|
2023-07-12 13:39:37 +02:00
|
|
|
args: [ '--headless', windowSizeArg ],
|
2023-02-27 10:44:32 +01:00
|
|
|
|
2021-09-03 10:27:04 +02:00
|
|
|
prefs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
2023-10-27 10:08:13 +02:00
|
|
|
services: [ 'shared-store' ],
|
2021-12-14 17:17:01 +01:00
|
|
|
|
|
|
|
beforeSession: beforeLocalSession,
|
|
|
|
beforeSuite: beforeLocalSuite,
|
|
|
|
afterSuite: afterLocalSuite
|
2021-09-03 10:27:04 +02:00
|
|
|
} as WebdriverIO.Config
|
|
|
|
}
|