[Wtr-general] How to open new IE-window minimized?

2006-07-26 Thread mail
Hello! IŽm using something like ie.link(:url, bla).click and a new broswer window opens where I attach to do something. Works fine, but I want the new browser window to be started minimized (or invisible). Any suggestions? Thanks, Christian ___

Re: [Wtr-general] How to open new IE-window minimized?

2006-07-26 Thread Nivetha Padmanaban
Use minimize to minimize the IE window. Regards, Nivetha. Email - [EMAIL PROTECTED] [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/26/2006 11:45 AM Please respond to wtr-general@rubyforge.org To wtr-general@rubyforge.org cc Subject [Wtr-general] How to open new IE-window

Re: [Wtr-general] How to open new IE-window minimized?

2006-07-26 Thread [EMAIL PROTECTED]
But then still the new window appears. I want the same behaviour as if a watir-script is started with -b. Regards, Christian - Original Message - From: [EMAIL PROTECTED] Nivetha Padmanaban To: wtr-general@rubyforge.org Date: 26.07.2006 08:29:31 Subject: Re: [Wtr-general] How to open new

Re: [Wtr-general] Cancel Subscription

2006-07-26 Thread Zeljko Filipin
Go to http://rubyforge.org/mailman/listinfo/wtr-general and unsubscribe.ŽeljkoOn 7/25/06, Tess :) [EMAIL PROTECTED] wrote: I do not wish to recieve emails from this network anymore.Please take meoff the list or tell me what I can do.Thanks!Tessa[EMAIL PROTECTED]

Re: [Wtr-general] How to open new IE-window minimized?

2006-07-26 Thread Zeljko Filipin
It looks like a feature request to me.http://jira.openqa.org/browse/WTROn 7/26/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: But then still the new window appears.I want the same behaviour as if a watir-script is started with -b. ___ Wtr-general

[Wtr-general] Verifying instance of text in second browser?

2006-07-26 Thread Max Russell
Hello Im wishing to check that when an application is launched more than once in a browser, only the first browser instance can login and the second is returned a suitable error page. So far Ive added this code to a module, to deal with this: def otherinstance(testname, testpass,

Re: [Wtr-general] Keyword Framework UI

2006-07-26 Thread Nivetha Padmanaban
What do u mean by CSDDT? Regards, Nivetha. Email - [EMAIL PROTECTED] Adrian Lewis [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/26/2006 05:28 PM Please respond to wtr-general@rubyforge.org To wtr-general@rubyforge.org cc Subject Re: [Wtr-general] Keyword Framework UI

Re: [Wtr-general] Keyword Framework UI

2006-07-26 Thread Adam Reed
I had the same question. Control Synchronized Data Driven Testing (CSDDT) framework by Adrian Rutter Chapter 8 in the book that Adrian linked is summarized on www.stickyminds.com as: ". . .the authors explain how to implement a project within the CSDDT framework. The chapter includes a

Re: [Wtr-general] Keyword Framework UI

2006-07-26 Thread Adrian Lewis
What do u mean by CSDDT? Control Synchronized Data-Driven Testing written by Bruce Posey and outlined in the book 'Just Enough Software Test Automation' I amended it to make it more at the atomic level. Have a look at the link I sent you. aidy

Re: [Wtr-general] Keyword Framework UI

2006-07-26 Thread Adrian Lewis
Control Synchronized Data Driven Testing (CSDDT) Bruce wrote it, I amended it. The document I wrote on it is here http://www.scionlabs.com/using_rational_robot.zip The framework is simple and portable (agile? I think). Spoke to Bruce and he is very interested in Watir. I am CC'ing

Re: [Wtr-general] Just wanted to invoke click event where the button have parameters in it

2006-07-26 Thread Bret Pettichord
On 7/19/06, Zeljko Filipin [EMAIL PROTECTED] wrote: HTML that you provided is not valid. Three tags have the same id. Ids should be unique.This is true. However, i think there is a workaround for this.Using 1.5.ie.button(:html, / 'delete', 'KH')/).clickBret On 7/19/06, VIKASH KUMAR [EMAIL

Re: [Wtr-general] Just wanted to invoke click event where the button have parameters in it

2006-07-26 Thread Zeljko Filipin
I knew there must be a way to click that button, I just did not know how. Watir is getting better and better. :)You made a typo, it should beie.button(:html, /'delete', 'KH'/).clickŽeljko On 7/26/06, Bret Pettichord [EMAIL PROTECTED] wrote: ie.button(:html, / 'delete', 'KH')/).click

[Wtr-general] Fw: was (thanks for the help) now SYSTIR

2006-07-26 Thread Adrian Lewis
Michael Bolton wrote aidy If there was a way to use Ruby to test Java and old win32 mb Check out SYSTIR. mb http://atomicobject.com/systir.page I cannot see for the life of me how SYSTIR could help to test legacy win32. The only thing I could think of is embed C in Ruby, to integrate

Re: [Wtr-general] How to open new IE-window minimized?

2006-07-26 Thread Lonny Eachus
What is causing IE to open a new window? Does the link tag specify "target=blank" or something like that? If so -- AND you do not really need a new window -- what you can do is rewrite the html of the link to remove "target =" before you click: (1) Minimize the window you are in. (2)

[Wtr-general] AWESOME Ruby Hacks

2006-07-26 Thread Michael Bolton
Hi, folks... In Chris McMahon's presentation at Agile 2006 today, we found this site: http://blog.nicksieger.com/articles/2006/04/23/tweaking-irb This outlines some wonderful things about how to hack your IRB configuration file to do some totally awesome things, including - IRB command-line

Re: [Wtr-general] AWESOME Ruby Hacks

2006-07-26 Thread Jesper Rønn-Jensen
On 7/26/06, Michael Bolton [EMAIL PROTECTED] wrote: http://blog.nicksieger.com/articles/2006/04/23/tweaking-irbThis outlines some wonderful things about how to hack your IRB configurationfile to do some totally awesome things, including What a great trick. Thanks a lot for sharing.I had to make a

Re: [Wtr-general] AWESOME Ruby Hacks

2006-07-26 Thread Nick Sieger
On 7/26/06, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: On 7/26/06, Michael Bolton [EMAIL PROTECTED] wrote: http://blog.nicksieger.com/articles/2006/04/23/tweaking-irb This outlines some wonderful things about how to hack your IRB configurationfile to do some totally awesome things, including

Re: [Wtr-general] AWESOME Ruby Hacks

2006-07-26 Thread Rand Thacker
Hey, and as an aside, XP pro systems have ENV['HOMEPATH'], so you'd changeLOG = #{ENV['HOME']}/.irb-historytoLOG = #{ENV['HOMEPATH']}\\.irb-history Worked like a charm for me.And, thanks to all for these great pointers. Very helpful.On 7/26/06, Nick Sieger [EMAIL PROTECTED] wrote:On 7/26/06,

[Wtr-general] Very basic Watir/Ruby question?

2006-07-26 Thread mi
Hi all, I'm very new to Watir/Ruby stuff:-( I'm using Simple module to open up a browser and load a url using new_browser_at(url) and am also using fill_text_field() and click_button_with_value() to fill all the text fields and button click on the page. Now there is a checkbox on the page

Re: [Wtr-general] Very basic Watir/Ruby question?

2006-07-26 Thread Jordan Glasner
On Jul 26, 2006, at 9:36 PM, mi wrote: How would I go by to click on the checkbox ie.checkbox(:id,'your_id').set http://wtr.rubyforge.org/rdoc/classes/Watir/CheckBox.html ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] Watir, file_field, dojo and VMware

2006-07-26 Thread Bret Pettichord
What is a ruby attach dialog?I'd be surprised if vmWare itself is the source of your problem. I'm pretty sure we have people here who have used it with Watir successfully. True?Bret On 6/26/06, John Castellucci [EMAIL PROTECTED] wrote: Howdy all – I have some Watir tests that