我正在创建我的第一个量角器框架,并在配置文件中进行准备。

我一直收到错误X符号,但我不知道为什么。

exports.config = {
  seleniumAddress: 'http://localhost:4444/wd/hub',


  specs: ['PageObjectLocator1.js'],

  capabilities: {
    browserName: 'chrome'
  }

  onPrepare = function {

    //place global functions here

  }


}




这也是一个屏幕截图。

javascript - 在 Protractor 配置文件中设置onPrepare时不断出现错误-LMLPHP

最佳答案

您的语法有问题,需要:来分隔键(onPrepare)和值(函数)。

另外,您在,capabilities键之间缺少逗号(onPrepare)。
这是您需要的代码:

exports.config = {
  seleniumAddress: 'http://localhost:4444/wd/hub',
  specs: ['PageObjectLocator1.js'],
  capabilities: {
    browserName: 'chrome'
  },
  onPrepare: function() {
    //your code
  }
}

09-19 12:55