我在getcookies.js文件中有javascript的getcookie(用户名,密码)功能。
'use strict';
var getcookie = function(username,password){
//body of the getcookie method.
};
我正在使用grunt调用此函数,因为我已经在grunt.js文件中编写了任务。
module.exports = function(grunt) {
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
protractor: {
options: {
keepAlive: false,
configFile: "./config/protractorConf.js"
},
getcookie: {
options: {
args: {
specs: ['getcookie.js']
}
}
}
}
});
//Note: Create task and add it to register task. In order to run single task comment all other tasks and run
grunt.registerTask('getcookie', ['protractor:getcookie']);
};
我想将参数用户名和密码从grunt文件传递给getcookie函数。 我怎样才能做到这一点?