Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Qiannan Zhang
beause i am in china, and china goverment forbid google.com. I am sorry, acutally i write test case by using watir to download plugin from website and then go to "add or remove programs" to uninstall it, So can you help me find out a way to do that ? I do not have idear. Thank you very much 2010/

[wtr-general] Re: Curious browser behavior: Firefox browser won't close on some pages but will everywhere else

2010-08-04 Thread Schase
I'm curious what the bug is, though. Why only one specific page from the entire web app, and why only on one machine? On Aug 3, 2:11 pm, Ethan wrote: > It is true that Vapir does not have this bug. > > On Tue, Aug 3, 2010 at 15:01, Basim Baassiri wrote: > > HI Schase, > > > I had the same probl

[wtr-general] Re: Unable to update ruby gem

2010-08-04 Thread Chethan
After I installed ruby186-27_rc2.exe version. Every thing working fine for me. Thanks every one helping me on this. ~Chethan On Aug 4, 12:41 pm, Padma Reddy wrote: > Its better to download new rubygem version (may be 1.8.7) and install. > HTTP 301 is the redirection error. > If you do 'gem env'

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread Pallavi Sharma
Hi This would work: require "watir" browser = Watir::Browser.start("http://www.cleartrip.com/";) browser.radio(:id => "rnd_trip").set # set round trip radio button browser.image(:src => /calendar_icon.gif/).click # click the first calendar browser.image(:src => /calendar_icon.gif/, :index => 2).c

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 12:42 PM, madhu kumar wrote: > browser.image(:src => "/images/global/calendar_icon.gif").click, i am getting error as Watir::Exception::UnknownObjectException: unable to locate element, using :src => "/images/global/calendar_icon. and its showing error as assert_exit and ena

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread madhu kumar
Hi, After typing this command browser.image(:src => "/images/global/calendar_icon.gif").click, i am getting error as Watir::Exception::UnknownObjectException: unable to locate element, using :src => "/images/global/calendar_icon. and its showing error as assert_exit and enabled. Regards, Madhu O

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 12:23 PM, madhu kumar wrote: > I tried this commands its not coming, its showing some errors, i have attached that screenshot, please find the attachment. Are you at the right page? By the way, you can copy/paste text from command prompt, there is no need for screen shots

Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 11:58 AM, Qiannan Zhang wrote: > i am sorry, the link you gave me is not usable > can you give me another one ? I do not know what is wrong with the link. I said: This is Watir support group. For ruby support please visit: http://www.ruby-lang.org/en/community/mailing-lis

Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Qiannan Zhang
i am sorry, the link you gave me is not usable can you give me another one ? thank you so much 2010/8/4 Željko Filipin > On Wed, Aug 4, 2010 at 11:52 AM, Qiannan Zhang > wrote: > > but i did not receive any feedback > > Here it is: > > > http://groups.google.com/group/watir-general/browse_threa

Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 11:52 AM, Qiannan Zhang wrote: > but i did not receive any feedback Here it is: http://groups.google.com/group/watir-general/browse_thread/thread/0696b2c9162c3617# You have posted the first question today at 17:27 your time, and the second one at 17:41. Željko -- Befor

Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Qiannan Zhang
but i did not receive any feedback 2010/8/4 Željko Filipin > On Wed, Aug 4, 2010 at 11:41 AM, Qiannan Zhang > wrote: > > Is anyone can tell how to use watir to uninstall software from "add or > remove programs" ? > > I have already answered in another thread. > > Željko > > -- > Before posting,

Re: [wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 11:41 AM, Qiannan Zhang wrote: > Is anyone can tell how to use watir to uninstall software from "add or remove programs" ? I have already answered in another thread. Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice

[wtr-general] can uninstall software from "add or remove programs" by using watir

2010-08-04 Thread Qiannan Zhang
Is anyone can tell how to use watir to uninstall software from "add or remove programs" ? need someone help me -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to http://groups.google.com/gr

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread Željko Filipin
This worked for me: require "watir" browser = Watir::Browser.start("http://www.cleartrip.com/";) browser.radio(:id => "rnd_trip").set # set round trip radio button browser.image(:src => "/images/global/calendar_icon.gif").click # click the first calendar browser.image(:src => "/images/global/calen

Re: [wtr-general] can uninstall software from "add or remove programs" by using ruby

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 11:27 AM, Qiannan Zhang wrote: > Is anyone can tell how to use ruby to uninstall software from "add or remove programs" ? This is Watir support group. For ruby support please visit: http://www.ruby-lang.org/en/community/mailing-lists/ Željko -- watir.com - community manag

[wtr-general] can uninstall software from "add or remove programs" by using ruby

2010-08-04 Thread Qiannan Zhang
Is anyone can tell how to use ruby to uninstall software from "add or remove programs" ? need someone help me thank you -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to http://groups.g

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread madhu kumar
Hi Zeljko, Hi have used this to commands to click the calendar date, i need to click one more calendar in the same page, index method is not working. if we select the roundtrip the second calendar is going to activate. (www.cleartrip.com) b.image(:src, "/images/global/calendar_icon.gif").click b.l

Re: [wtr-general] Re: Calendar Click

2010-08-04 Thread Željko Filipin
On Wed, Aug 4, 2010 at 7:02 AM, madhu kumar wrote: > have u got any result,(www.cleartrip.com) What is the problem? I believe we have answered your question. Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message be

Re: [wtr-general] Unable to update ruby gem

2010-08-04 Thread Padma Reddy
Its better to download new rubygem version (may be 1.8.7) and install. HTTP 301 is the redirection error. If you do 'gem env' the Remote sources will be pointed to ' http://gems.rubyforge.org' but it has to be redirected to http://rubygems.org if you install the latest version this will be taken c

[wtr-general] Unable to update ruby gem

2010-08-04 Thread Chethan
Hi Every one, I am trying to update watir gem, I have started all together new ruby installation & updating the gem. Here are the system & ruby details, OS window-xp(Service pack 3) Ruby : ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] I tried with the following help link http://exceptio