Как с помощью nightwatchjs для браузера firefox включить эмуляцию мобильного девайса?
Файл nightwatch.json имеет вид:
{
"webdriver": {
"start_process" : true,
"server_path": "./node_modules/.bin/geckodriver",
"cli_args": [
"--log", "debug"
],
"port": 4444
},
"test_settings" : {
"default" : {
"desiredCapabilities": {
"browserName" : "firefox",
"acceptInsecureCerts": true,
"nativeEvents": true,
"javascriptEnabled": true,
"acceptSslCerts": true,
"firefoxOptions": {
"mobileEmulation": {
"deviceMetrics": {
"width": 360,
"height": 640,
"pixelRatio": 3
},
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Mobile Safari/537.36"
}
}
}
}
}
}
На что можно заменить firefoxOptions или как по-другому сделать рабочей эмуляцию мобильного девайса?