Re: [Ironruby-core] WATIR on IronRuby?

2014-03-26 Thread Timur Poperecinii
Also don't forget there is WATIN for .NET, may be it would be an easier alternative. And Hanselman recently wrote about Canopy,  http://www.hanselman.com/blog/NuGetPackageOfTheWeekCanopyWebTestingFrameworkWithF.aspx, a similar thing. Just saying, 

Re: [Ironruby-core] WATIR on IronRuby?

2014-03-09 Thread Orion Edwards
www.gallagher.co From: Richard S. li...@ruby-forum.com To: ironruby-core@rubyforge.org Date: 08/03/2014 01:39 a.m. Subject:[Ironruby-core] WATIR on IronRuby? Sent by:ironruby-core-boun...@rubyforge.org Does any form of WATIR run on IronRuby? What I've seen in my searches to date

[Ironruby-core] WATIR on IronRuby?

2014-03-07 Thread Richard S.
Does any form of WATIR run on IronRuby? What I've seen in my searches to date doesn't look encouraging, but that information could be out of date. If a form of WATIR can run on IronRuby, how difficult is it to build IronRuby itself completely from source? I have run into problems trying to get

Re: [Ironruby-core] WATIR on IronRuby?

2014-03-07 Thread Pascal Normandin
: [Ironruby-core] WATIR on IronRuby? Does any form of WATIR run on IronRuby? What I've seen in my searches to date doesn't look encouraging, but that information could be out of date. If a form of WATIR can run on IronRuby, how difficult is it to build IronRuby itself completely from source? I have run

[Ironruby-core] WatiR with IronRuby

2010-03-01 Thread Mohammad Azam
Is WatiR supported in IronRuby RC 1? -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] WatiR with IronRuby

2010-03-01 Thread Mohammad Azam
yeah that is what I am using but WatiN is more geared towards .NET. Pascal Normandin wrote: Hello, I've been using WatiN http://watin.sourceforge.net/ -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list

Re: [Ironruby-core] WatiR with IronRuby

2010-03-01 Thread Ivan Porto Carrero
...@rubyforge.org [mailto: ironruby-core-boun...@rubyforge.org] On Behalf Of Mohammad Azam Sent: Monday, March 01, 2010 9:37 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] WatiR with IronRuby yeah that is what I am using but WatiN is more geared towards .NET. Pascal Normandin

Re: [Ironruby-core] Watir under IronRuby Error

2009-09-20 Thread Mohammad Azam
Can you share how you got it to work? -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-27 Thread Qwerty Qwerty
Ok, so after hacking watir.rb, I managed to get IE to open and navigate to the URL, but then using the following basic script: require 'watir' # use watir gem test_site = 'http://www.google.com' # set a variable b = Watir::IE.new # open the IE

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-27 Thread Shri Borde
Of Qwerty Qwerty Sent: Thursday, August 27, 2009 8:48 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Watir under IronRuby Error Ok, so after hacking watir.rb, I managed to get IE to open and navigate to the URL, but then using the following basic script: require 'watir

[Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Qwerty Qwerty
Hi all, I am trying to get my Watir scripts running under IronRuby, but am encountering the following error: :0:in `require': no such file to load -- dl (LoadError) from C:/ironruby-0.9.0/lib/ruby/1.8/dl/import.rb:3 from ./watir/winClicker.rb:53 from ./watir.rb:42 Any

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Ivan Porto Carrero
Doesn't watir use C-based extensions. In that case they have to be ported to .NET in order to use it. --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Blog: http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread CDurfee
to ironruby-core@rubyforge.org To ironruby-core@rubyforge.org cc Subject Re: [Ironruby-core] Watir under IronRuby Error Doesn't watir use C-based extensions. In that case they have to be ported to .NET in order to use it. --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Jimmy Schementi
I think it only uses dl/import for FireWatir (it uses a firefox hash plugin to communicate); IE support should just depend on win32ole. Anyone want to dig into what watir is using dl/import for? ~Jimmy Sent from my phone On Aug 20, 2009, at 4:14 AM, Ivan Porto Carrero