Author: Ramanean

Logging to ChromeDriver.log in Selenium

We can log the error messages and Verbose to ChromeDriver.log via Selenium by using the below code   System.Diagnostics.Process process = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; // startInfo.FileName =...