Re: [wtr-general] Automated saving/capturing page DOM

2010-09-02 Thread Željko Filipin
On Wed, Sep 1, 2010 at 7:30 PM, James Wilson jwilson...@gmail.com wrote: is there a way to get a DOM shot that captures the HTML, CSS, and JS to disk so it can be re-rendered at a later point? I see how this would be really useful. If anybody knows how to do this, I am really interested too.

Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/3624359/issues-with-link-on-watir-and-safari -- 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/group/watir-general To post:

Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/602069/autocomplete-dropdown-test-with-ruby-watir -- 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/group/watir-general To post:

[wtr-general] Re: in `gem_original_require': no such file to load -- win32screenshot (MissingSourceFile)

2010-09-02 Thread Jarmo Pertman
What gem? win32screenshot? Or the gem using win32screenshot? Anyway, what gem is using win32screenshot? I highly recommend using the newest version of win32screenshot, because there are some bugs which prevent to capture screenshots in some circumstances with the old version. Jarmo On Aug 29,

[wtr-general] Re: Popup window click_no_wait and File download

2010-09-02 Thread Jarmo Pertman
Have you attached to the popup window? popup = Watir::IE.attach :title, /something/ What happens if you execute #close on it? popup.close Do you see any error messages or anything at all? Jarmo On Aug 31, 1:43 pm, Jeff Bender ebender...@googlemail.com wrote: Hallo all, i am new at watir

[wtr-general] Re: [Wtr-development] new window automation library: WinWindow

2010-09-02 Thread Jarmo
Hi, Ethan! I've taken a glimpse on that thing now. Really, a glimpse. First of all, i think that it's somehow great if something else (ffi in this case) is used instead of AutoIt. On the other hand with AutoIt a lot of problems are already solved. So there are two sides for this approach. It's

[wtr-general] Re: Running consecutive DOS commands in Ruby

2010-09-02 Thread Srinidhi
Hello Everyone, I have a situation where i have to invoke command line tools like putty_sftp and OpenSSH from ruby script for automation, as out application handles sftp uploads through these tools. So the problem is i can single DOS command in ruby and store the output(using system( ),exec( )),

Re: [wtr-general] Re: Running consecutive DOS commands in Ruby

2010-09-02 Thread Željko Filipin
On Thu, Sep 2, 2010 at 1:38 PM, Srinidhi srinidhi...@gmail.com wrote: I have a situation where i have to invoke command line tools like putty_sftp and OpenSSH from ruby script for automation How is this related to Watir? You should post your question in a Ruby group/forum/mailing list. Or,

Re: [wtr-general] Re: Running consecutive DOS commands in Ruby

2010-09-02 Thread Željko Filipin
On Thu, Sep 2, 2010 at 1:38 PM, Srinidhi srinidhi...@gmail.com wrote: So the problem is i can single DOS command in ruby and store the output(using system( ),exec( )), but here were are talking abt multiple DOS commands to achieve the goal. And the problem is? Show us the code (and error

Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/3626789/is-it-possible-to-open-a-new-tab-in-watir-webdriver -- 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

Re: [wtr-general] new window automation library: WinWindow

2010-09-02 Thread Željko Filipin
On Wed, Sep 1, 2010 at 5:35 PM, Ethan notet...@gmail.com wrote: its aim is to represent a window (such as an IE window, or a javascript popup), and expose windows API methods in an object-oriented, ruby-like way. Ethan, this is great news. I will take a look at it as soon as I get a few

[wtr-general] Ruby.exe get crashed after running 15-20 test cases.

2010-09-02 Thread Amit
Hi Guys I'm running, my scripts on FireWatir. But after running 15-20 scripts in one shot it get crashed. I tried to capture error by using rescue = e. But its not showing any error. I executed that script again for which it got crashed. That scripts ran successfully. My Browser is FF 3.5

Re: [wtr-general] Firewatir attach method doesn't work properly

2010-09-02 Thread Amit
Hi Ethan, I used VAPIR 1.7.1 for attaching two browsers. Now i'm able to work on two instance on browser simultaneously. Thank you very much.. Btw .. did you fixed that problem recently? Thank You On Mon, Aug 16, 2010 at 11:19 AM, Ethan notet...@gmail.com wrote: Vapir is currently broken on

[wtr-general] require firewater produces NoMethodError

2010-09-02 Thread chaitanya
Hi every1, I am new to Watir and Firewatir. I tried the Watir in 5 mins tutorial on Watir OpenQA Wiki. It ran successfully once, but now when I say b=Watir::Browser.new, it produces a NoMethodError for a method 'demodulize'. I tried some stuff around and when I said require

Re: [wtr-general] require firewater produces NoMethodError

2010-09-02 Thread Charley Baker
The activesupport gem has changed, you mostly likely have 3.0.0. I'll look into it, but in the meantime, you can roll back to an earlier version: gem uninstall activesupport gem install activesupport --version '=2.3.8' gem list activesupport #make sure 3.0.0 isn't installed. Looks like we

Re: [wtr-general] require firewater produces NoMethodError

2010-09-02 Thread John Fitisoff
That's odd. require 'watir/browser' b = Watir::Browser.new should work and I don't think you want to do it any other way with newer versions. - Original Message From: chaitanya vengeance...@gmail.com To: Watir General watir-general@googlegroups.com Sent: Thu, September 2, 2010

Re: [wtr-general] Re: [Wtr-development] new window automation library: WinWindow

2010-09-02 Thread Ethan
It's great that it is nicely documented :) Thank you. I tried hard to make sure everything had a useful description for the rdoc. From a developer's view i don't like that (almost) all the code is in one file with 1365 lines. Why? I could stand to split this up, that is very true. It

Re: [wtr-general] Firewatir attach method doesn't work properly

2010-09-02 Thread Ethan
fixing vapir-firefox for 3.0.* is buried on my backlog, I'm afraid, and it will be some time before I am able to get to that. On Thu, Sep 2, 2010 at 14:27, Amit amit.e...@gmail.com wrote: Hi Ethan, I used VAPIR 1.7.1 for attaching two browsers. Now i'm able to work on two instance on browser

[wtr-general] Re: require firewater produces NoMethodError

2010-09-02 Thread chaitanya
Thanks everyone. @Charley, yeh the activesupport version was 3.0.0. I found your post on stackoverflow and thus was able to solve it. Thanks for the help guys On Sep 2, 12:01 pm, John Fitisoff jfitis...@yahoo.com wrote: That's odd. require 'watir/browser' b = Watir::Browser.new should