module DEBUGGER__::UI_CDP

def get_chrome_path candidates

def get_chrome_path candidates
  candidates.each{|c|
    if File.exist? c
      return c
    end
  }
  raise UnsupportedError
end