Class Oselenium
In: lib/oselenium.rb
Parent: Object

module Selenium::Client::Protocol

  alias remote_control_command_original remote_control_command
  def remote_control_command(verb, args=[])
     $log.debug('Issuing: ' + verb + ' ' + args.join(', ') ) if $oats['selenium']['debug']
    begin
      remote_control_command_original(verb, args)
    rescue
      raise
       $log.debug Test.current.backtrace($!)
    end
  end

end

Methods

Public Class methods

[Validate]