4

将 phantomjs 与 selenium 一起使用时,我想更改默认的 --webdriver-logfile 参数,即 selenium 传递给 phantomjs。我该怎么做?

selenium 日志中的相应行:

11:06:06.960 INFO - arguments: [--webdriver=14380, --webdriver-logfile=<ROOT PATH DELETED HERE>/phantomjsdriver.log]

在咖啡脚本中启动 phantomjs:

webdriverio = require 'webdriverio'

module.exports.World = World = (next) ->
  @browser = webdriverio.remote({ desiredCapabilities: {
    browserName: 'phantomjs'
    "phantomjs.binary.path": "node_modules/phantomjs/bin/phantomjs"
  }})
  .init()

next()
4

1 回答 1

0

我找了几个小时却找不到答案,因此我在 selenium 调用的 phantomjs 文件中破解了它。这不是一个适当的解决方案,但可以完成工作。

args = args.map(function(str) {
 if(str.search('-webdriver-logfile') != -1 ) {
    console.log('Replacing default webdriver log with null in phantomjs');
    return str.replace(/--webdriver-logfile=.*$/i,"--webdriver-logfile=/dev/null")
 }
 return str;
 });
于 2016-10-04T15:06:09.163 回答