[Wtr-general] Vista Sidebar Gadgets

2006-08-07 Thread ann-elizabeth . brady
Has anyone looked at using Watir and Ruby to test Sidebar Gadgets on Microsoft Vista? Ann___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

[Wtr-general] Writing the output of show all objects to a file

2006-08-07 Thread SRK
Hi,I have around 100 files and going one by one file and look for the objects is painful. Is there anyway to write the output of show all objects result into a file? Send instant messages to your online friends http://uk.messenger.yahoo.com ___

Re: [Wtr-general] Writing the output of show all objects to a file

2006-08-07 Thread Nandan
Is this what you mean? outp = File.open(out.txt, w) sr = ie.show_all_objects outp.puts sr outp.close - Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=3375messageID=9406#9406

Re: [Wtr-general] Writing the output of show all objects to a file

2006-08-07 Thread Charley Baker
Another option is to use the Microsoft Internet Explorer developer toolbar: http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038displaylang=en It's one of the best ways in ie to view the dom. -CharleyOn 8/7/06, Nandan [EMAIL PROTECTED] wrote:Is this what

[Wtr-general] Watir 1.5 Specifying Element in Form Error

2006-08-07 Thread Bach Le
I was running the latest stable release of Watir 1.4 but had the window attach error which was fixed with version 1.5 development build but after I installed 1.5, I can no longer specify a specific element within a form such as: ie.form(:id, form1).button(:src, http://www;).click Was

Re: [Wtr-general] Watir 1.5 Specifying Element in Form Error

2006-08-07 Thread Bret Pettichord
Bach Le wrote: I was running the latest stable release of Watir 1.4 but had the window attach error which was fixed with version 1.5 development build but after I installed 1.5, I can no longer specify a specific element within a form such as: ie.form(:id, form1).button(:src,

[Wtr-general] Multiple Security alerts

2006-08-07 Thread Mike Townley
Hello, I am trying to automate the login for a web application that presents more than one security alert. The first is presented for the SSL connection to the login page. The login page is a front end for CAS (central authentication service) CAS has then opens an SSL connection to one

[Wtr-general] OT: strange UTF-8 phenomenon

2006-08-07 Thread Chris McMahon
Hi... I'm having a (slow) conversation about UTF8 in soap4r and http-access2 with Hiroshi Nakamura, and in the course of submitting a problem report ran across the following very weird behavior: cut/paste to normal CMD prompt: str = 'è or à' cut/paste to IRB prompt: irb(main):002:0* str = 'ach

Re: [Wtr-general] Watir 1.5 Specifying Element in Form Error

2006-08-07 Thread Bach Le
Thanks for getting back to me so quickly. Here is an example of it working in 1.4.1 and not in the 1.5 development build. ie = IE.new ie.goto(www.entertainment.com) ie.link(:text, 'Buy the Book').click ie.link(:text, 'Chicago North

[Wtr-general] Problem: tests running in parallel

2006-08-07 Thread Jamie Czuy
I have test code like the following: def test_datapage login test_the_page end where login and test_the_page are other methods in the TestCase class. When I run this it seems the login method and the test_the_page method are run in parallel. I cannot figure out how to make the

Re: [Wtr-general] Asserting that a particular option is selected in a drop down

2006-08-07 Thread Bret Pettichord
Two things. 1. We are now tracking bugs and feature requests in jira at openqa (http://jira.openqa.org), not at Rubyforge. Please put all requests and bug reports there. (We are trying to close down the old ones at Rubyforge to avoid confusion.) 2. If you have a solution, like Lonny, please