Re: [Wtr-general] OT: generate random text?

2005-10-04 Thread Winston, Phyllis H
Alan Richardson has an excel spreadsheet using visual basic macros for data generation: http://www.compendiumdev.co.uk/testdata/index.php -Original Message- From: Chris McMahon [mailto:[EMAIL PROTECTED] Sent: Monday, October 03, 2005 6:33 PM To: wtr-general@rubyforge.org Subject:

Re: [Wtr-general] Problems with XPath extension

2005-10-04 Thread Jeff Wood
Ok ... I'm trying to figure out what specifically you NEED/WANT this for ??? What is the point of going after the DIV tag if you already know the text inside it ? ... Just my question ... I'm trying to see practical use. I can see use for finding a tag based on id's | attributes, sorry, guess

[Wtr-general] How to click on the confirmation button

2005-10-04 Thread Max Kononovich
Hello,

[Wtr-general] [ wtr-Support Requests-2574 ] Need file access by URL instead of actual path

2005-10-04 Thread noreply
Support Requests item #2574, was opened at 2005-10-04 13:21 You can respond by visiting: http://rubyforge.org/tracker/?func=detailatid=488aid=2574group_id=104 Category: None Group: None Status: Open Resolution: None Priority: 3 Submitted By: Nobody (None) Assigned to: Nobody (None) Summary: Need

Re: [Wtr-general] javascript question

2005-10-04 Thread Zeljko Filipin
Try this ie.selectBox(:id, 'Details:UnassignedList').select('(X0005)') $ie.button(:value, '').click Zeljko -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of beth ferguson Sent: Tuesday, October 04, 2005 7:34 PM To: wtr-general@rubyforge.org Subject:

Re: [Wtr-general] OT: generate random text?

2005-10-04 Thread Jeff Wood
I recently posted this, but I'll pop another copy here. def allowed_chars output = [] output += ('A'..'Z').to_a output += ('0'..'9').to_a end def random_text( length ) output = allowed = allowed_chars() length.times do output allowed[ rand( allowed.length ) ] end output end all done

Re: [Wtr-general] [ wtr-Support Requests-2574 ] Need file access by URL instead of actual path

2005-10-04 Thread Jeff Wood
You should use the file:// handler ... should work. ie.goto( file://c:/myApp/config/config.xml ) ... anything you can do with IE can be done... If you are looking for the URL to the local file: Click File - Open Navigate to the file and click Open Copy the URL in the IE address bar. Use

Re: [Wtr-general] How to click on the confirmation button

2005-10-04 Thread Jeff Wood
This isn't meant as an RTM email, but most people will find pretty much every thinkable scenario for using WATiR has test cases in the Unit tests. If you simply navigate to where you have WATiR installed, there is a unittests directory that contains examples of calling _javascript_ that pops

Re: [Wtr-general] OT: generate random text?

2005-10-04 Thread Bret Pettichord
This would be great stuff to post to our Wiki, and FAQ. http://wtr.rubyforge.org/wiki/wiki.pl http://wtr.rubyforge.org/wiki/wiki.pl?FrequentQuestions How 'bout a Wiki page on the topic? Bret At 03:28 PM 10/4/2005, Jeff Wood wrote: I recently posted this, but I'll pop another copy here. def

Re: [Wtr-general] [ wtr-Support Requests-2574 ] Need file access by URL instead of actual path

2005-10-04 Thread Bret Pettichord
It's quite possible that this support request was sent in my someone who is not a subscriber to this list. Bret At 05:31 PM 10/4/2005, Jeff Wood wrote: You should use the file:// handler ... should work. _ Bret Pettichord www.pettichord.com

Re: [Wtr-general] Website Update

2005-10-04 Thread Richard Allen
Looks like a funky link on the page maybe? "Web Applications" looks like a link but goes no where.Bret Pettichord [EMAIL PROTECTED] wrote: I've updated the Watir website and User's Guide.http://wtr.rubyforge.org- New search box allows searches of online Watir Documentation and Mail Archives.-

Re: [Wtr-general] Regarding Frames and SSL

2005-10-04 Thread Sankar
Can anyone suggest some possible workarounds to overcome this frame issue. I am stuck at this point. Please help Thanks in Advance, Sankar On 9/28/05, Bret Pettichord [EMAIL PROTECTED] wrote: I'm pretty sure this is the standard cross-site scripting problem.AKA the same-origin policy: a