VinayBerry

Results 2 issues of VinayBerry

The dev team at my org upgraded their WinForms app to .net version 4.8 and all element requests began timing out. The timeout is on the call to find the...

Code I'm using: ```csharp ExtentReports report = new(); ExtentHtmlReporter reporter = new("./temp"); report.AttachReporter(reporter); var suiteNode = report.CreateTest("SmokeTests"); var testNode = suiteNode.CreateNode("Test Case"); var stepNode = testNode.CreateNode("Step 1"); stepNode.Info("Enter text 1234567890");...