We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d083d1 commit 6057c6aCopy full SHA for 6057c6a
examples/dotnet/SeleniumDocs/Browsers/InternetExplorerTest.cs
@@ -54,7 +54,8 @@ public void LogsToFile()
54
_driver = new InternetExplorerDriver(service);
55
_driver.Quit(); // Close the Service log file before reading
56
var lines = File.ReadLines(GetLogLocation());
57
- Assert.IsNotNull(lines.FirstOrDefault(line => line.Contains("Started InternetExplorerDriver server")));
+ Console.WriteLine("Lines: {0}", lines);
58
+ Assert.IsTrue(lines.Contains("Started InternetExplorerDriver server"));
59
}
60
61
[TestMethod]
0 commit comments