是否可以在Protractor Debug Configuration(WebStorm)中指定params

时间:2018-04-20 15:50:13

标签: debugging protractor webstorm

我在Webstorm中使用Protractor,为了在终端中使用参数,我可以chords.show('lily.png') 有没有办法在这个配置中指定params,所以我不必每次都输入它?以类似于下面的屏幕的方式 enter image description here

2 个答案:

答案 0 :(得分:2)

量角器运行配置目前不支持将命令行选项传递给量角器,请投票通过unfocusedwriting以获得有关此功能的任何进展的通知。

但是,正如@tehbeardedone所提到的,javac -classpath external.jar myClass.java 可以在量角器配置中指定 - 请参阅WEB-25165

答案 1 :(得分:0)

这是对我有用的配置

  • 打开WebStorm
  • 点击“运行”标签
  • 选择“编辑配置...”
  • 点击新打开的窗口左上角的“ +”按钮
  • 从列表中选择“ Node.js” 配置

设置参数(以下示例在Windows计算机上使用)

  • 名称:“量角器”
  • 节点解释器:“ C:\ Program Files \ nodejs \ node.exe”
  • 节点参数:“”
  • 工作目录:
  • JavaScript文件:“〜\ AppData \ Roaming \ npm \ node_modules \ protractor \ built \ cli.js”
  • 应用程序参数,在这里您可以指定conf的路径,相对于工作目录^,然后是类似的参数:“ e2e / 设置 / configs / protractor”。 custom.conf.js --baseUrl =“ https://stage.mysite.com” --params.login =“ testuser” --params.password =“ test_USER00”'
  • 环境变量:“”

此配置在我的项目中效果很好,在该项目中,我们仅依靠异步/等待语法