Skip to content

Instantly share code, notes, and snippets.

@jarib
Created January 13, 2011 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarib/777516 to your computer and use it in GitHub Desktop.
Save jarib/777516 to your computer and use it in GitHub Desktop.
select = driver.find_element(:name => "select")
option = select.find_elements(:tag_name => "option").find { |o| o.text == "Name you want" }
raise "could not find the right option" if option.nil?
option.select
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment