class Selenium::WebDriver::Support::Select

def select_options(opts)

def select_options(opts)
  if multiple?
    opts.each { |o| select_option o }
  else
    select_option opts.first
  end
end