Coded ui VS2017 ordered list alternatives

327 views Asked by At

I have a UWP application and codedui testcases project for this app which I put them in playlist in visual studio 2017 but the playlist doesn't run testcases in order so I searched online and people suggested using orderedtest, but when I try to add an orderedtest I can't find such file type in VS what should I add as a plugin or is it not supported in vs2017 ? Also is orderedtest my only option ?

1

There are 1 answers

4
PixelPlex On BEST ANSWER

Did you try following these instructions? https://msdn.microsoft.com/en-us/library/ms182631.aspx

As an alternative, you could do this manually. You can create a new test method that call's the other test methods in the order you would like them to execute. No need for a playlist that way.