class Capybara::RackTest::Node

def unselect_option

def unselect_option
  raise Capybara::UnselectNotAllowed, 'Cannot unselect option from single select box.' unless select_node.multiple?
  native.remove_attribute('selected')
end