Skip to content

Instantly share code, notes, and snippets.

@leviwilson
Last active December 25, 2015 07:19
Show Gist options
  • Save leviwilson/6938837 to your computer and use it in GitHub Desktop.
Save leviwilson/6938837 to your computer and use it in GitHub Desktop.
main_form = UIA.find_by_id('MainFormWindow')
main_form.children # => [...] array of 22 child elements
main_form.children.find {|e| e.name == 'DropDown List'}.children.map(&:name) # => ['Apple', 'Orange', 'Banana']
main_form.children.first.click
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment