有没有办法在运行量角器测试时传入Selenium Hub的地址,例如使用npm run protractor
?
答案 0 :(得分:5)
是的,您可以在从命令提示符运行时传递selenium地址:
for file in *
do
echo "$file"
(( ${file%%_*} > 5)) && echo "moving to dir2/" || echo "moving to dir1/"
done
答案 1 :(得分:0)
它也可以放在你的conf.js文件中,例如:
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
...
};