I would like to know the typical workflow for a coded ui test on a Team Foundation Server.
Our current workflow is:
UI Build Definition
will trigger theMain Build Definition
- this
Main Build Definition
will build theMain Solution
and theUI Test Solution
- then the
UI Build Definition
will deploy the result and start testing it on a virtual machine.
Now I would like to skip building of the main solution, and just use the latest build, because for a small UI test fix this workflow always requires to build the whole thing again, but I haven't figured out yet how to be able to create a workflow like:
- Select the last build of the
Main Solution
- build a new
UI Test Solution
- deploy both onto the VM and start testing
is this even possible?
I would like to be able to select on which build the main solution should be based on (e.g. use latest build), but I could not figure out how to also tell TFS to also build a new UI Solution :(
Thanks for your input.