Thread: Website Testing
View Single Post
  #2 (permalink)  
Old 01-20-2010, 05:13 AM
Aditservice Aditservice is offline
Junior Member
 
Join Date: Jan 2010
Posts: 6
Post Test fields that are visible on selecting a specific list item

To check the values in specific fields that only appear when a certain value is selected from a dropdown list; you have to script that specifically using a If condition Then action(s) End If branch within your test script.

Code:
If valueToSelect = "MyDesiredValue1" Then 
         Place the test script actions for these specific fields here
End If
If valueToSelect = "MyDesiredValue2" Then
         Place the test script actions for other specific fields that appear now.
End If
Reply With Quote