UI list box
From UBot Studio
(Difference between revisions)
(Created page with "This command is a UI Command. This command creates a list box on the UI panel tied to a specific variable. == Example == <pre> navigate("http://ubotstudio....") |
|||
Line 10: | Line 10: | ||
</pre> | </pre> | ||
+ | |||
Selecting a list item from the list box and running the script navigates to a webpage and inserts the value of the list box into the specified field using the list box's variable. | Selecting a list item from the list box and running the script navigates to a webpage and inserts the value of the list box into the specified field using the list box's variable. | ||
+ | |||
[[File:uilistbox.png]] | [[File:uilistbox.png]] |
Revision as of 15:33, 14 April 2013
This command is a UI Command. This command creates a list box on the UI panel tied to a specific variable.
Example
navigate("http://ubotstudio.com/playground/simple-form", "Wait") ui list box("Select a Month", "january,february,march,april", #select) type text(<username field>, #select, "Standard")
Selecting a list item from the list box and running the script navigates to a webpage and inserts the value of the list box into the specified field using the list box's variable.