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?
相关问题
- Selenium in Java is not finding element when using
- How to send text to the search field through Selen
- What is the difference in “find_element_by_xpath”
- Getting error: File extension specified '.webt
- Using TFS command line tf.exe how can I copy a rep
相关文章
- Is it possible to do a “destroy history” in TFS?
- driver.Manage().Logs.GetLog(LogType.Browser) no lo
- How do I make a TeamCity build appear in the TFS B
- Chrome: fake microphone input for test purpose
- TFS vs. JIRA/Bamboo/SVN [closed]
- Speeding up Selenium Webdriver
- Python Selenium Send Keys Giving Warning about siz
- Why doesn't my .tfignore file ignore my packag
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.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.
https://blogs.msdn.microsoft.com/dgartner/2016/02/23/running-selenium-tests-as-part-of-your-release-with-vsts-release-management/
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.