VinnyK
6 years agoOccasional Contributor
Unable to find Test Logs, not sure if they are being logged
Hi,
I am using SpecFlow and Nunit 3 with NUnit3Adaptor.
Within my test steps I am logging some test messages and capturing screenthot but I can't find anything in the bin folder nor in the Project directory. I don't even see TestResults folder.
LaunchApplication();
IDriver Driver = new LocalDriver();
Driver.Log.Message("Application Launched");
Driver.Log.Screenshot(test.controlGrid, "Screenhot of a Grid table");
Driver.Log.Message("Test Again");
Assert.Fail();// force failing in case the logs are being cleared
Am I missing something here ? Can anyone please help me how to use the TestLeft's capturing Test Log and screenshot funtionality?
Thanks in advance