I want print log each selenium code line in Eclipse console, so in setUp()
I add a new line like this:
//import
import java.util.logging.Level;
//setup
driver.setLogLevel(Level.INFO);
I successfully to printed a log on the console, but it is red.
I know this is no error.
Environment:
- Mac
- Eclipse Photon 2018-09 (4.9.0)
- Selenium-Java 3.5.3 (maven dependency)
- JUnit
Can I print black on the console ? is it possible ?