class Capybara::Node::Element

def select_option

Returns:
  • (Capybara::Node::Element) - The element
def select_option
  warn "Attempt to select disabled option: #{value || text}" if disabled?
  synchronize { base.select_option }
  self
end