gpt4 book ai didi

javascript - 守夜人 JS。并行运行不同的测试

转载 作者:行者123 更新时间:2023-11-29 23:19:23 25 4
gpt4 key购买 nike

我有一些带有“并行”标签的测试。

我想在两个浏览器中并行运行它,即第一个测试将在第一个浏览器中启动,第二个将同时在第二个浏览器中启动。

我尝试执行此命令:

npm run nightwatch -- --env default,default --tag parallel

但结果是,在每个浏览器中,我的标签都会首先进行测试。

我做错了什么?

最佳答案

我设置我的配置,添加到环境:“测试设置”:{ “默认”: { “selenium_port”:4444, “selenium_host”:“本地主机”, "default_path_prefix": "/wd/hub", “沉默”:是的, “截图”:{ “启用”:是的, “on_failure”:真实的, “on_error”:是的, “路径”:“tmp_screenshots” } },

    "firefox": {
"desiredCapabilities": {
"browserName": "firefox",
"marionette": true,
"acceptSslCerts": true,
"javascriptEnabled": true
},
"globals": {
"type": "firefox",
"user": "me1",
"pass": "test"
}
},

"chrome": {
"desiredCapabilities": {
"browserName": "chrome",
"chromeOptions": {
"args": [
"disable-web-security",
"use-fake-device-for-media-stream",
"use-fake-ui-for-media-stream"
]
},
"acceptSslCerts": true,
"javascriptEnabled": true
},
"globals": {
"type": "chrome",
"user": "me1",
"pass": "test"
}
},

当我运行下面的执行行时npm run nightwatch -t tests/google.js -e firefox,chrome我的测试在两个不同的浏览器中开始。

关于javascript - 守夜人 JS。并行运行不同的测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51319709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com