[wtr-general] Re: trying to access onclick property in a td using xpath

2009-09-09 Thread rs77
this worked now... i used syntax ie.frame(:name, 'toc').cell(:text, 'Areas And Branches').click :) thanks for your help..the initial barrier is overnow to the next level. On Sep 9, 10:33 am, rs77 rishaind...@gmail.com wrote: now this is getting really weird. I do a show_frames and it

[wtr-general] How to read an xml file using watir scripts

2009-09-09 Thread msazeez28july
Hi, We have an .NET application for which the UI labels can be configured/changed using an xml file provided inside code. There are xml tags inside the file as below data name=CompanyText xml:space=preserve valueCompany/value /data If i change the above value tag from Company to FIRM,

[wtr-general] Re: Watir Logo Refresh Competition

2009-09-09 Thread Željko Filipin
On Wed, Sep 9, 2009 at 7:35 AM, Tony ynot...@gmail.com wrote: Are you still accepting logos ... ?? I can not speak for Alister, but I am sure he is still accepting logos. :) Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[wtr-general] Re: How to read an xml file using watir scripts

2009-09-09 Thread Željko Filipin
On Wed, Sep 9, 2009 at 8:54 AM, msazeez28july sabdulkha...@gmail.com wrote: how do i read an xml file using watir scripts? Watir is _just_ a Ruby library for driving browsers. If you want to read/edit xml files, there are Ruby libraries for that. I am not familiar with xml parsing, but I think

[wtr-general] Re: How to handle Modal Dialog Box

2009-09-09 Thread Željko Filipin
On Wed, Sep 9, 2009 at 7:02 AM, Rajat Singhal coolraja...@gmail.com wrote: how to attach modal dialog box This could help: http://wiki.openqa.org/display/WTR/Pop+Ups http://wiki.openqa.org/display/WTR/Modal+Dialogs Željko -- http://watirpodcast.com/

[wtr-general] Re: How to read an xml file using watir scripts

2009-09-09 Thread Raveendran P
Hi, Hpricot -- This article will help you http://markmail.org/message/x56irjeq2bv37z23 Thanks On Wed, Sep 9, 2009 at 12:24 PM, msazeez28july sabdulkha...@gmail.comwrote: Hi, We have an .NET application for which the UI labels can be configured/changed using an xml file provided inside

[wtr-general] Re: How to handle Modal Dialog Box

2009-09-09 Thread Rajat Singhal
Hi i have tried the script given on this link but ie.attach is unable to attach modal dialog Thanks On Wed, Sep 9, 2009 at 1:49 PM, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Wed, Sep 9, 2009 at 7:02 AM, Rajat Singhal coolraja...@gmail.com wrote: how to attach modal dialog box

[wtr-general] Re: How to handle Modal Dialog Box

2009-09-09 Thread Rajat Singhal
Hi Željko i got no solution on the link you provided its just explains how modal dialog can be created. kindly let me know a proper solution for the same . Thanks in advance. On Wed, Sep 9, 2009 at 2:50 PM, Rajat Singhal coolraja...@gmail.com wrote: Hi i have tried the script given on

[wtr-general] Re: How to handle Modal Dialog Box

2009-09-09 Thread Željko Filipin
Unfortunately, all I know about modal dialogs is there. I think I have even never seen one. Somebody else will have to help you, and maybe even post a solution to the mentioned page. Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed

[wtr-general] How to veify text using FireWatir

2009-09-09 Thread Pallavi Sharma
Hi Can anyone here please tell me how can i verify text using FireWatir. .text?include is not working with Firewatir Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to this

[wtr-general] Re: How to handle Modal Dialog Box

2009-09-09 Thread Pallavi Sharma
Hi Zeljko Thanks for the response, Can anyone here please help with the same. How to handle web dialog boxes with Watir. Thanks On Wed, Sep 9, 2009 at 6:20 PM, Željko Filipin zeljko.fili...@wa-research.ch wrote: Unfortunately, all I know about modal dialogs is there. I think I have even

[wtr-general] Re: Ci_reporter on watircraft

2009-09-09 Thread Charley Baker
It appears there's a forked version of ci_reporter on github that adds support for cucumber output, find out more here: http://github.com/rubaidh/ci_reporter/tree/master I'm not using ci_reporter any longer, just straight html output for cuke and rspec, but the general idea is to set it up in

[wtr-general] Help Required in Converting IE Watir to FireWatir

2009-09-09 Thread Pallavi Sharma
Hi Everyone I have an implementation of watir lib with the IE and now i have to convert the same to Firefox. i am facing these issues: 1. I used to get the IE by using the hwnd property, but its not present with Firefox 2. When i use title with Firefox it works sometimes but fails also sometime,

[wtr-general] Re: I'm looking for a way to count all PageTo(*) elements or to loop until the bullet_search_white_small.gif doesn't exist in the page

2009-09-09 Thread orde
This will give you the number of links: browser = [your browser of choice] puts browser.links.length --- To create the loop: while browser.image(:src, /bullet_search_white_small.gif/).exists? puts 'exists' sleep 2 browser.refresh end Hope that helps. orde On Sep 9, 7:56 am, Guy

[wtr-general] Re: Save As File Dialog

2009-09-09 Thread Alan Baird
Jackie - I have had problems with the Save As dialog box not accepting long strings. Apparently there is a length restriction on this field that you may be running into (somewhere around 120 characters). Alan On Thu, Sep 3, 2009 at 8:10 AM, JackieH jkulb...@juno.com wrote: Bill, Thanks so