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?
2 Answers
The same can be achieved using TFS 2015
, in which we can create a new build of type ant/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) or pom.xml
(for maven) which will contain all the details specific to the project and execute the same.

- 1,417
- 3
- 20
- 34

- 81
- 1
- 10
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.

- 23,409
- 5
- 46
- 69
-
Sorry for this but I am new to this and trying to understand things. Does this mean if i get TFS 2015 plugin for eclipse i would be able to execute tests using MTM after configuring agent and controller. – Pulkit Shah Apr 02 '17 at 15:27
-
No, you need to use the new Team Build system rather than the legacy XAML builds. Check out http://java.visualstudio.com – MrHinsh - Martin Hinshelwood Apr 02 '17 at 21:30