Hello,
I am using Test Studio to develop automated tests for a complex WPF application.
I am wondering: Is there any API calls I can make in a coded step that allows me to disable specific steps from being run during test execution?
For example:
if (some condition)
{
disable steps 2-4 of this test
}
else
{
execute all steps of this test
}
I want to have the condition be the value of an environmental variable on the computer where the test will be ran. (Will be ran on multiple different computers with the same environmental variable set to different values).
Let me know if there are any methods out there I could use.
Thanks,
Jon