[wtr-general] Re: Unable to Click Submit button

2010-05-12 Thread Vishal
I tried in IRB, but I am getting the same exception. I tried with Link also, its giving the same error. On May 10, 9:15 pm, Tiffany Fodor tcfo...@comcast.net wrote: Hi Vishal! The error message you're getting suggests that Watir can't find the button with id 'showSearchCriteriaButton'.  Have

Re: [wtr-general] job opening

2010-05-12 Thread Željko Filipin
On Tue, May 11, 2010 at 6:33 PM, Eric Mathiesen mathiese...@gmail.com wrote: I can't speak for the rest of the people on this list, but this for Watir automation questions and support. It is not a place to recruit potentials. The culture of this group so far has been that job postings are fine,

[wtr-general] Re: Watir/FireWatir and .text

2010-05-12 Thread Betsy
Hi All, At least let me know if it is possible or not... :( -Betsy Joy. On May 11, 1:22 pm, Betsy joybe...@gmail.com wrote: Hi All, Is there any way across Watir/FireWatir/Vapir to retrieve the same text across IE/FF??? Really looking forward to a positive answer. -Betsy Joy --

[wtr-general] Re: Watir/FireWatir and .text

2010-05-12 Thread Betsy
Thanks.. :) At least now I can look out for alternatives... -Betsy Joy On May 12, 2:40 pm, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Tue, May 11, 2010 at 10:22 AM, Betsy joybe...@gmail.com wrote: Is there any way across Watir/FireWatir/Vapir to retrieve the same text across

Re: [wtr-general] Re: Watir/FireWatir and .text

2010-05-12 Thread Željko Filipin
On Wed, May 12, 2010 at 12:54 PM, Betsy joybe...@gmail.com wrote: At least now I can look out for alternatives... Good luck. As far as I understand the problem, browsers do not return the text of the page the same, so the problem will probably exist in other tools too. Željko -- Before

Re: [wtr-general] Re: Modal Dialog Boxes and FireWatir

2010-05-12 Thread Angrez Singh
Found the solution to this. Working on getting it to FireWatir. May take day or two. Thanks for your patience. Regards, Angrez On Thu, Apr 29, 2010 at 7:07 AM, Lonny Eachus lon...@gmail.com wrote: I have had some success dealing with the modal download window in Firefox on the Mac, using

[wtr-general] Re: Modal Dialog Boxes and FireWatir

2010-05-12 Thread Betsy
Tht's gr8 news!! -betsy joy On May 12, 5:02 pm, Angrez Singh ang...@gmail.com wrote: Found the solution to this. Working on getting it to FireWatir. May take day or two. Thanks for your patience. Regards, Angrez On Thu, Apr 29, 2010 at 7:07 AM, Lonny Eachus lon...@gmail.com wrote:

[wtr-general] Re: Web Page Front End

2010-05-12 Thread jtk
Thanks for your response Bill, I'll check that out, sorry for the late response On Apr 3, 3:23 pm, Bill Agee billa...@gmail.com wrote: Hi Jeff, A while ago I wrote a rails app that does what you describe. Until today it was not working with Rails 2.x, but I just fixed that and uploaded the

[wtr-general] Re: Web Page Front End

2010-05-12 Thread jtk
Bill, just installed runner and it looks great, thank you very much, i think your app will do exactly what i need. jeff On Apr 3, 3:23 pm, Bill Agee billa...@gmail.com wrote: Hi Jeff, A while ago I wrote a rails app that does what you describe. Until today it was not working with Rails

[wtr-general] Tabs

2010-05-12 Thread Brad
Hello, I want to click on all the links on a page, got it, I have this working no problem. Some links have their target set to _blank which in turns involves a new tab (a browser tab) inside the same browser window. So if I only had one tab visible and active when the link is clicked now I have

Re: [wtr-general] Tabs

2010-05-12 Thread Wesley Chen
ie = Watir::IE.attach(:title, xxx) can locate an existing IE window. ie.close can close the ie window Wesley. For life, the easier, the better. On Thu, May 13, 2010 at 4:26 AM, Brad bradask...@gmail.com wrote: Hello, I want to click on all the links on a page, got it, I have this working