mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-06 14:11:49 +02:00
22 lines
446 B
JavaScript
22 lines
446 B
JavaScript
![]() |
'use strict'
|
||
|
|
||
|
exports.config = Object.assign({}, require('./chrome').config, {
|
||
|
hostname: 'geckodriver',
|
||
|
capabilities: [
|
||
|
{
|
||
|
// geckodriver supports no parallel sessions:
|
||
|
maxInstances: 1,
|
||
|
browserName: 'firefox',
|
||
|
'moz:firefoxOptions': {
|
||
|
//args: ['-headless', '--window-size=1440,900']
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
videos: {
|
||
|
enabled: true,
|
||
|
resolution: '1440x900',
|
||
|
startDelay: 500,
|
||
|
stopDelay: 500
|
||
|
}
|
||
|
})
|