class Selenium::WebDriver::Support::Select

def select_all

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