From: Dheeraj Gambhir Date: 2009-08-21T20:40:31+09:00 Subject: CI_reporter usage Hi, I have: ruby 1.8 watir 1.6.2 ci_reporter-1.6.0 Can any body provide a link or example of how to start the use of ci_reporter in my script. Say for a simple script like: require 'watir' require 'rubygems' require 'win32ole' ie = Watir::IE.new autoit = WIN32OLE.new('AutoItX3.Control') ie.goto('http://testurl') assert(ie.link(:text, 'About Test').exists?) ie.text_field(:name,"text1").set("Test") ie.button(:name,"submit").click_no_wait autoit.WinWaitActive("[Class:#32770]") text = autoit.ControlGetText("[Class:#32770]", "", "Static2") autoit.ControlClick("[Class:#32770]","","Button1") puts text Thanks in advance. Regards D G -- Posted via http://www.ruby-forum.com/.