Reputation: 21
I am new to TestRail tool and wanted to integrate all my UI Selenium automation test cases with TestRail. I have gone through the API Bindings of TestRail but they are only meant for API test cases. Can someone please please give me any idea to integrate TestRail with selenium using c#.
Upvotes: 1
Views: 1502
Reputation: 259
What you would need to do to integrate it is to set up your test run as part of your set up code when you are running your Selenium tests.
There is a Nuget package that will allow you to integrate with Testrail if you are using the original test suite project style from Testrail.
https://github.com/zoosk/testrail-client
I've created an example project of a simple Selenium + NUnit + Testrail integration here: https://github.com/shortstacked/SeleniumTestrailIntegration
Upvotes: 1