class Selenium::WebDriver::Support::Select

def deselect_all

def deselect_all
  raise Error::UnsupportedOperationError, 'you may only deselect all options of a multi-select' unless multiple?
  options.each { |e| deselect_option e }
end