Reputation: 49
Im using ChromeDriver in my selenium tests, in console Im getting:
Starting ChromeDriver 2.15.322448 (521791b310fec1797c81ea9a20326839860b7d3) on port 15823
is there any way to skip or not show this at all in console output?
Upvotes: 2
Views: 635
Reputation: 473863
You can make the chrome driver silent by setting webdriver.chrome.silentOutput
to true
:
System.setProperty("webdriver.chrome.silentOutput", "true");
Upvotes: 3