Hi Pallavi,

When using your modified file, you dont need to "require ci_reporter"
nor need to have it installed.
Just require the modified file.

require 'watir'
#require 'ci/reporter/test_suite.rb'
require '<YOUR MODIFIED FILE>'
class TC_TEST_suite < Test::Unit::TestCase
      def test_a_search
            test_site = "http://www.google.com";
            browser = Watir::Browser.new
            browser.goto test_site
            browser.text_field(:name, "q").set "pickaxe"
            browser.button(:name, "btnG").click
      end
end

Thanks,
Tony
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~----------~----~----~----~------~----~------~--~---

Reply via email to