FitNesse - Verify all dropdown values without populating the field

I was wondering if there was a way to verify all of the values in a dropdown picker field without selecting each one.

Scenario: 
There is a field that contains 3 choices "Initiate, Additional, Review", is there a way to verify that this dropdown contains each of this values without populating each field then verifying.

The following script will accomplish the goal, but does not scale well, as some drop down fields contain dozens or hundreds of selections and this would greatly increase testing time.

!|script|
|populate field | [1] | with | Initiate|
|verify field | [1] | contains | Initiate|
|populate field | [1] | with | Additional|
|verify field | [1] | contains | Additional|
|populate field | [1] | with | Review|
|verify field | [1] | contains | Review|

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data