Hi,
I am trying dump javascript console logging to file when using firefox and selenium standalone server. I was trying to follow official wiki page and added "webdriver.log.file" system property when starting selenium server i.e.:
java -jar selenium-server-standalone.jar -Dwebdriver.log.file=C:\myfile.log
After running selenium standalone server I lunch my tests (using javascript intern framework) - the tests are running fine, but the problem is that no log file is created and the "webdriver.log.file" system property seems to be ignored.
I was able to get log file for firefox stdout/stderr using "webdriver.firefox.logfile" property, and I was also successful with chrome log files using "webdriver.chrome.logfile" and "webdriver.chrome.verboseLogging" system properties, but still for some reason no luck with "webdriver.log.file". Can you help?
Wiki page I was following:
My environemnt details are:
Firefox version: 37.0.1
Selenium standalone server version: 2.45.0
Platform: Windows 7
Thanks,
Bart