[wtr-general] Re: Error on Watir installation

2011-03-21 Thread blkjk
tion of binary > > Cheers, > Tim > > @90kts > > > > > > > > On Tue, Mar 22, 2011 at 11:05 AM, blkjk wrote: > > That did not work either. :( > > > On Mar 21, 4:11 pm, Tim Koopmans wrote: > > > For the time being, install rubygems manually,

[wtr-general] Re: Error on Watir installation

2011-03-21 Thread blkjk
gt; ruby rubygems-1.6.2/setup.rb > > Cheers, > Tim > > @90kts > > > > > > > > On Tue, Mar 22, 2011 at 10:04 AM, blkjk wrote: > > on WIN7 with: > > - RUBYGEMS VERSION: 1.3.7 > > - RUBY VERSION: 1.8.6 (2007-09-24 patchlevel 111) [i386-m

[wtr-general] Error on Watir installation

2011-03-21 Thread blkjk
on WIN7 with: - RUBYGEMS VERSION: 1.3.7 - RUBY VERSION: 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] gem install watir yields error: hoe requires RubyGems version 1.4 tried 'gem update --system', but no improvement I have installed successfully on other pcs w/ same, but failing here. Though

[wtr-general] Re: Equivalent code to use for logout on IE & FF

2011-01-04 Thread blkjk
Works. Thank you! On Jan 4, 6:25 am, jv-watir wrote: > Did you try > $b.link(:text,/Sign Out/).click > ? > On Jan 1, 4:34 pm, blkjk wrote: > > > > > > > > > that works only with FireFox for me > > > On Dec 20 2010, 11:09 pm, Arto Vuori wro

[wtr-general] Re: Equivalent code to use for logout on IE & FF

2011-01-01 Thread blkjk
that works only with FireFox for me On Dec 20 2010, 11:09 pm, Arto Vuori wrote: > Hi blkjk, > > try with a regular expression, > > $b.link(:href, /logout\/logout/).click > > --Arto Vuori > > On 21 joulu, 01:01, blkjk wrote: > > > > > > > >

[wtr-general] Equivalent code to use for logout on IE & FF

2010-12-20 Thread blkjk
Hi - I wish to condense my logout code so I don't have to decide which browser I am using. I am driving IE and FireFox. The source on the actual page is: Sign Out The code I am using is browser dependent, but wish to eliminate that (as seen below): if ($bType == "IE") $b.link(:href, '

[wtr-general] Re: Difficulty typing into textfield

2010-10-15 Thread blkjk
you're not going to be able to type into the mockPassword field > because when you focus it, it hides itself and gives you another field. try > something like: > > $b.text_field(:name, "mockPassword").focus > $b.text_field(:name, "password").set(pass_word) &

[wtr-general] Re: Difficulty typing into textfield

2010-10-15 Thread blkjk
quot; > > > > basically, you're not going to be able to type into the mockPassword > > field > > > because when you focus it, it hides itself and gives you another field. > > try > > > something like: > > > > $b.text_field(:name, "mockPassword&

[wtr-general] Re: Difficulty typing into textfield

2010-10-11 Thread blkjk
ot;Password field missing" > end > > On Wed, Oct 6, 2010 at 8:54 PM, Eric Mathiesen wrote: > > > > > > > Could also try .flash to ensure you are calling the right element from > > orb.  Css has given me some challenges in the past..

[wtr-general] Difficulty typing into textfield

2010-10-06 Thread blkjk
I am trying to type text to a Login textfield. And when I use this code to access it: $b.text_field(:name, 'mockPassword').set('abc123')No password actually gets typed into the textfield and used for login. Here is what Firebug caught to identify the textfield: Any thoughts on

[wtr-general] Re: Error on initial install of Watir

2010-09-10 Thread blkjk
Thanks. This remedied the issue. On Sep 8, 9:08 pm, Željko Filipin wrote: > On Thursday, September 9, 2010, blkjk wrote: > >   "Error installing Watir.ActiveSupport requires Ruby Version 1.8.7" > > Take a look at this: > > http://stackoverflow.com/questions/36

[wtr-general] Error on initial install of Watir

2010-09-08 Thread blkjk
Using Win XP SP2 I did the following: 1. Installed Ruby 1.8.6-26 2.Installed RubyGems 1.3.5 3. Executed Watir install command: gem install watir Got the following error msg: "Error installing Watir.ActiveSupport requires Ruby Version 1.8.7" I thought I was installing correctly, but... any