# File lib/selenium/webdriver/ie/server.rb, line 8
        def self.get
          binary = IE.driver_path || Platform.find_binary("IEDriverServer")
          if binary
            new(binary)
          else
            raise Error::WebDriverError,
              "Unable to find standalone executable. Please download the IEDriverServer from http://code.google.com/p/selenium/downloads/list and place the executable on your PATH."
          end
        end