我是Selenium的新手,我在我的.NET单元测试项目中使用IE(WebDriver 3.0)。如果我可以在测试用例运行期间输出调试信息,那就太好了。
我在stackoverflow上发现了这些问题:How to write to Console.Out during execution of an MSTest test,Selenium Webdriver, C# output to console after opening driver和Selenium c# - Test Output not appears in the console window。
大多数人都认为System.Diagnostics.Debug.WriteLine()
可以胜任这项工作。但是,它在我的情况下不起作用。我按以下方式运行我的测试用例:
我想知道我是否应该以另一种方式运行我的测试?
非常感谢。
BTW:Console.WriteLine()
也不起作用。