03-04-2022 01:29 PM
My company is mandating use of gurock TestRail for test procedures and results.
Is there a way to integrate LabView and or TestStand 2021 with TestRail?
e.g., Ingest a TestRail test procedure or output test results into TestRail directly vs. manual entry?
03-10-2022 12:05 PM
Hi,
There is not much information about this.
From the Test Rail website it states that it can integrate with Visual Studio.
From TestStand you can refer the C# User interface.
Probably they both can merge through visual studio application but somebody needs to study and understand both software and then merge.
Ravi
03-14-2022 01:52 PM - edited 03-14-2022 01:53 PM
Thank you Ravi for the response. Yes it looks like it will be a research project. I was hoping someone had done the integration before and had a more concrete answer.
08-21-2022 08:58 PM
Hi Sharon,
I've successfully done this in the past. The way we did this was to use TestRail's API interface.
We wrote the functions in C# needed to interact with TestRail (Update Test Run results, read the expected values etc.)
These functions was captured in a library (DLL), which could then be used by test stand.
The test stand sequence itself was written to check for any active test runs after starting the sequence and it only executed those step cases that have been selected in the test run in Test rail.
It worked pretty good!
Best Regards,
08-22-2022 01:15 PM
Thank you for sharing your experience.