有没有办法通过终端启动Appium并将autoAcceptsAlerts设置为true?
这是我开始使用Appium的脚本:
start_appium(){
source ~/.bash_profile
$NODE $APPIUM_JS
--app $APPLICATION_PATH
--address "0.0.0.0"
--port $1
--udid myudid
}
我想添加autoAcceptAlerts。有可能吗?
答案 0 :(得分:0)
Appium 1.5取消了大多数CLI标志;其余部分可以转换为JSON,并成为--default-capabilities标志的一部分。例如:
# raw JSON as an argument
--default-capabilities '{"app": "myapp.app", "deviceName": "iPhone Simulator"}'
# or the name of a JSON file
--default-capabilities /path/to/file.json
因此,要在终端上设置autoAcceptAlerts,您将运行:
$ appium --default-capabilities '{"autoAcceptAlerts": true}'
来源:http://appium.io/slate/en/master/?java#the-default-capabilities-flag