Paul van Bemmelen
Paul van Bemmelen
**Is it possible to set the log level of the webdriver ?** That might shed some light onto the problem. https://www.selenium.dev/documentation/webdriver/browsers/edge/ shows java system properties `EdgeDriverService.EDGE_DRIVER_LOG_PROPERTY` and `EdgeDriverService.EDGE_DRIVER_LOG_LEVEL_PROPERTY` I've tried...
From looking at code from https://github.com/SeleniumHQ/seleniumhq.github.io/tree/trunk/examples/java I found the correct command : `!define COMMAND_PATTERN {java -Dwebdriver.edge.logfile=C:\Users\PBEMMELE\paul\tmp\FixtureDebugTest\log.txt -Dwebdriver.edge.loglevel=all -cp %p %m}` The hope is, that the log file will provide some...