glarsen_1
12 years agoOccasional Contributor
Auto Time-Out
Is there a way to set the auto time out for a specific test using a script method? For example i want the time out for a test to be 5 minutes usually but sometimes if a certain file exists i want it to be 10 minutes
If C:\temp\file.exists Then
Test1.Timeout = 5min
Else
Test1.Timeout = 10min
End If
If C:\temp\file.exists Then
Test1.Timeout = 5min
Else
Test1.Timeout = 10min
End If
Does That Make Sense?