How do I execute / run coded UI as part of Release Control in VSTS 2015?

My solution got Coded UI test for my simple project. I can create and release code for azure. Now I want to test run the Coded UI after release (include / add this Coded UI Test to the release pipeline).

thanks in advance enter image description here

+3


source to share


1 answer


You can use Visual Studio Test Agent Deployment and Run functional tests in your release pipeline, just like defining a build. You can refer to how to run UI code validation in TFS below:

If you are using VSTS there are also some tiny canisters to look out for, check out this blog: Launch functional (coded) UIs into your VSTS outlet pipeline




Update

you need to either install WinRM to use HTTPS (instead of the default HTTP), or add Trusted Host to connect from the machine on the machine you are connecting to.

+2


source







All Articles