configuration is not working #14
Description
I am new to angular JS testing , I followed you instruction for setup the protractor with sample. While on execute the testcases I getting a error
C:\Documents and Settings\sweet\Application Data\npm\node_modules\protractor\bin>protractor e:\protractor_workspace\protractor-master\example\protractorConf.js
Using the selenium server at http://localhost:4444/wd/hub
FF
Failures:
- angularjs homepage should greet using binding
Message:
TypeError: Cannot call method 'get' of undefined
Stacktrace:
I changed browser name and path only in "protractorConf.js".
capabilities: {
'browserName': 'firefox'
},
// Options to be passed to Jasmine-node.
jasmineNodeOpts: {
// Spec folders are relative to the current working directly when
// protractor is called. This can be folders or files.
specFolders: ['e:/protractor_workspace/protractor-master/example/onProtractor.js'],
isVerbose: false,
showColors: true,
includeStackTrace: true
}
};
let me know I made any mistake ?