我们正在使用量角器测试我们正在构建的前端角度应用程序.
目前我们正在使用browser.get()指定我们希望再次测试的环境(localhost:9000,staging,UAT)但是我想参数化这个,这样当我们使用grunt test运行我们的测试时:e2e我们可以指定一个用于将browser.get()更改为指定环境的参数.
能够调用grunt测试的东西:e2e NODE_ENV = uat来测试指定的环境.
任何人都有任何洞察力如何做到这一点?
您可以将任意数量的参数传递给量角器
您需要在grunt文件中的量角器任务中传递参数.这是一个小片段
原文链接:https://www.f2er.com/angularjs/140620.html您需要在grunt文件中的量角器任务中传递参数.这是一个小片段
config: grunt.file.readJSON('config-param.json'),protractor: { options: { configFile: "config/e2e.conf.js",// Default config file keepAlive: true,// If false,the grunt process stops when the test fails. noColor: false,// If true,protractor will not use colors in its output. debug: '<%= config.debugger %>',args: { params: '<%= config %>' } },run: {} },
并且您可以访问规范中的参数,例如. browser.params.fieldName