class Selenium::WebDriver::Support::Select

def deselect_options(opts)

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