I have a application scenario where I am currently executing my test cases(written in selenium C#) using MTM, I want to know whether same can be achieved using selenium java from eclipse?
Can I use MTM to execute my testcases that are wriiten in Selenium Java using Eclipse IDE
495 views Asked by Pulkit Shah At
2
There are 2 answers
2
On
No
You can't use MTM to execute Java tests, however Microsoft is moving away form that model. This is likely because of this issue and they have already moved to using Team Build with VSTS & TFS 2015+ to execute all sorts of Functional Tests.
They have a specific task for this and you can now associate all automated test results with Requirements for reporting without the need for Test Cases in tge middle.
The same can be achieved using
TFS 2015, in which we can create a new build of typeant/maven.Once the build has been created queueing the build would result in execution of test cases on pre configured agent machine.While creating a build we need to provide
build.xml(for ant) orpom.xml(for maven) which will contain all the details specific to the project and execute the same.