Igor Recio

Results 24 comments of Igor Recio

I am having similar issue. I am trying to run my tests in a machine with RDP. When RDP window is visible (I can see the test running) there is...

Hmm I can see this: https://github.com/FlaUI/FlaUI/issues/151#issuecomment-375650514 The problem is that I am trying to do click... I will try to avoid that but it is a button so I may...

Using VNC solved the problem in my case. Now I can run automated tests with FlaUI even if I minimize the VNC window.

Hi @peterpolidoro! Thanks for your interest in our H-ROS SoM! My colleagues from the sales team will take care of your request via e-mail.

Same problem here, I am looking into the code to check where this wrong date is set

I'd say that it is related to --> https://github.com/extent-framework/extentreports-csharp/blob/master/extentreports-dotnet-core/Model/Test.cs#L250 I can see in the code that start-time and end-time is being correctly set here --> https://github.com/extent-framework/extentreports-dotnet-cli/blob/master/ExtentReportsDotNetCLI/ExtentReportsDotNetCLI/Parser/NUnitParser.cs#L75-L83 Can @anshooarora @dsparkplug or...

Hi @lkkushan101, I added this in NUnitParser.cs: ```csharp if (tc.Element("attachments") != null) { var att = tc.Element("attachments"); if (att.Element("attachment") != null) { test.AddScreenCaptureFromPath(att.Element("attachment").Element("filePath").Value); } } ```

Hi @james1301, regarding [this](https://github.com/microsoft/WinAppDriver/blob/master/Docs/UsingAppium.md) I would say that if you use Appium, you are simply using WinAppDriver behind the scenes. I am testing a only a desktop application so I...

Hi @rahul4phone, This may help --> https://stackoverflow.com/a/54637038 Original source --> https://docs.microsoft.com/en-us/azure/devops/pipelines/test/ui-testing-considerations?view=azure-devops&tabs=mstest#visible-ui-testing-using-self-hosted-windows-agents It says: > Agents that are configured to run as service can run Selenium tests only with headless browsers....

I think I am facing the same issue. My app has been recently updated to .NET4.8 and some tests have started to fail... I am using FlaUI 4.0.0. If I...