量角器Selenium Hub地址

时间:2016-08-04 07:02:50

标签: npm gulp protractor selenium-grid

有没有办法在运行量角器测试时传入Selenium Hub的地址,例如使用npm run protractor

2 个答案:

答案 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',
   ... 
};