Can someone share a code which stops ChromeDriver to display logs in console. These red color logs are taking lots of space.
Thanks
Can someone share a code which stops ChromeDriver to display logs in console. These red color logs are taking lots of space.
Thanks
I hope the code below helps you to get rid of those red-coloured 'logs':
System.setProperty("webdriver.chrome.silentOutput", "true");
java.util.logging.Logger.getLogger("org.openqa.selenium").setLevel(Level.SEVERE);