Is there a way to modify the default --webdriver-logfile parameter that selenium passes to phantomjs when using them together?
This is the line in the selenium log:
11:06:06.960 INFO - arguments: [--webdriver=14380, --webdriver-logfile=<ROOT PATH DELETED HERE>/phantomjsdriver.log]
Launching phantomjs in coffeescript:
webdriverio = require 'webdriverio'
module.exports.World = World = (next) ->
@browser = webdriverio.remote({ desiredCapabilities: {
browserName: 'phantomjs'
"phantomjs.binary.path": "node_modules/phantomjs/bin/phantomjs"
}})
.init()
next()