I did the above things and even i followed the steps provided in that page. 
I pasted the IEDriverServer.exe in the "C:\WebDrivers" path

My "server.rb" contains the below code

module Selenium
  module WebDriver
    module IE
      class Server

        STOP_TIMEOUT = 5

        def self.get
          binary = Platform.find_binary("C:\WebDrivers\IEDriverServer.exe")
          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

        attr_accessor :log_level, :log_file

        def initialize(binary_path, opts = {})
          Platform.assert_executable binary_path

          @binary_path = binary_path
          @process = nil

          opts = opts.dup
          @log_level   = opts.delete(:log_level)
          @log_file    = opts.delete(:log_file)

          unless opts.empty?
            raise ArgumentError, "invalid option#{'s' if opts.size != 1}: 
#{opts.inspect}"
          end

        end

        def start(port, timeout)
          return @port if running?

          @port = port

          @process = ChildProcess.new(@binary_path, *server_args)
          @process.io.inherit! if $DEBUG
          @process.start

          unless SocketPoller.new(Platform.localhost, @port, 
timeout).connected?
            raise Error::WebDriverError, "unable to connect to IE server 
within #{timeout} seconds"
          end

          Platform.exit_hook { stop }

          @port
        end

        def stop
          if running?
            @process.stop STOP_TIMEOUT
          end
        end

        def port
          @port
        end

        def uri
          "http://#{Platform.localhost}:#{port}";
        end

        def running?
          @process && @process.alive?
        end

        private

        def server_args
          args = ["--port=#{@port}"]

          args << "--log-level=#{@log_level.to_s.upcase}" if @log_level
          args << "--log-file=#{@log_file}" if @log_file

          args
        end

      end
    end
  end
end


On Sunday, 4 November 2012 01:02:56 UTC+5:30, Željko Filipin wrote:
>
> On Sat, Nov 3, 2012 at 8:10 PM, sivam <[email protected] <javascript:>> 
> wrote:
> > Please download the IEDriverServer from 
> http://code.google.com/p/selenium/downloads/list and place the executable 
> on your PATH.
>
> Did you do this?
>
> Željko
> --
> filipin.eu 
>  

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

[email protected]
http://groups.google.com/group/watir-general
[email protected]

Reply via email to