Debugging usually means analyzing and removing bugs in the code. In the context of automated functional testing, debugging means finding out why a test step did not execute as expected and then fixing it.
Print Text for Debugging
Console.WriteLine("Now on page: " + driver.Title);
String app_no = driver.FindElement(By.Id("app_id")).Text;
Console.WriteLine("Application number is " + app_no);
Here is the output from
executing the above test from command line:
Now on page: Assertion Test Page
Application number is 1234
When the test is executed in a Continuous ...