CaptainBli
CaptainBli

Reputation: 4201

TFS: How to convert an Automated test to standard/manual test

Currently I have a bunch of automated tests that have steps that can be run manually. The steps are things like press a button and verify that the view changes. The test is marked as automated because once upon a time it was automated, but the test system is now defunct.

How do I change the test so I can run the test by hand following the steps like a standard test case (non-automated)?

I don't see a way to change it back to "Not Automated", or run it as not automated.

Upvotes: 1

Views: 115

Answers (2)

CaptainBli
CaptainBli

Reputation: 4201

In Test Manager or in the TFS Test Run you can select Run with options to choose to test the old automated tests manually. The Run with options allows me to choose how to run the test and select a manual method rather than the automated one.

enter image description here

Select Run with Web Browser or with the Test Runner as part of the Test Manager:

enter image description here

Upvotes: 0

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51073

Sorry that it's not able to convert an automated test into a manual test directly.

You have to manually copy and paste during the creation of a new test case.

For detailed steps refer to how to Create manual test cases.

Besides, if you just want to run these tests, do not mind manual or auto.

You could also try to associate automated tests with test cases, add the test cases to the test suite, and run VSTest to make Select tests using set to Test Plan.

enter image description here

enter image description here

The test cases in test run list with test cases name, not methods name.

enter image description here

Upvotes: 1

Related Questions