c# - How to execute selenium NUnit test cases from jenkins -
i have installed jenkins , want execute selenium test cases jenkins. have installed selenium grid plugin jenkins , running server node. scripts written in c#. java think can done using ant or maven xml. don't know how execute nunit test cases.
go project under configuration
click "add task" , add "run unit tests ms tests".
you need specify test lies. (i use .dll of specific test project).
just hit run , execute.
also make sure have specified following tags in code
[testclass] //on class [testmethod] //on each method
Comments
Post a Comment