Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 556 Bytes

File metadata and controls

36 lines (22 loc) · 556 Bytes
description
Learn how to use the I.select command to select a dropdown in your UIlicious test.

Select Dropdowns

Select a dropdown

Here, we will use this "Number" dropdown list for illustration.

Number

One

Two

Three

Specify the option;

 I.select("Two");

Or, specify the list and the option:

I.select("Number", "Two");

This selects the option "Two".