量角器:指向默认conf.js文件的PhpStorm IDE
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了量角器:指向默认conf.js文件的PhpStorm IDE相关的知识,希望对你有一定的参考价值。
我试图在Ubuntu上的phpStorm IDE中运行一个基本的Protractor脚本。当我运行conf文件时,它会抛出以下错误。
Usage: protractor [configFile] [options]
configFile defaults to protractor.conf.js
The [options] object will override values from the config file.
See the reference config for a full list of options.
Error: Error: more than one config file specified
at /usr/local/lib/node_modules/protractor/built/cli.js:163:15
我无法确定它为什么指向默认的conf文件而不是我指定的。
以下是配置的屏幕截图
c_conf.js
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: [spec.js],
framework : 'jasmine',
capabilities: {
browserName: 'chrome'
}
}
spec.js
describe('Protractor Framework', function(){
it('Title', function(){
browser.get('https://www.google.com');
})
})
答案
您设置错误,请参考以下屏幕截图中的设置:
Node interpreter
是指定nodejs二进制文件Node parameters
是可选的,用于指定nodejs二进制的参数javascript file
必须是量角器 build的cli.js
Application parameters
用于在cmd行中键入conf文件和参数Environment variables
是可选的
以上是关于量角器:指向默认conf.js文件的PhpStorm IDE的主要内容,如果未能解决你的问题,请参考以下文章