[wtr-general] Re: My blog about Watir and RSpec

2010-02-16 Thread Jarmo Pertman
I asked Tiffany, because she said about looking forward to reading more, thus I was just interested how will she manage to do that technically. Just like a market-survey :) Jarmo On Feb 15, 7:00 pm, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Sun, Feb 14, 2010 at 5:29 PM, Jarmo

[wtr-general] watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Hi All, This is Mahesh. Am new to this community and this is my first post. please share if you have any idea for the below problem I'm working with a web applicatio that sometimes hangs in the middle of a test. Is there a way to automate this with Watir? (way to proceed by refreshing the

[wtr-general] Re: My blog about Watir and RSpec

2010-02-16 Thread Rob
Plesae keep them coming. I tend to load up a bunch of pages in my browser and then refresh at a regular interval. Every day for example when I come home from the office. I only tend to keep very active things on RSS feeds, like usenet lists etc. Great Blog, please keep at it. I've learnt quite a

[wtr-general] String to watir object

2010-02-16 Thread JArkelen
Hi, I have a string value of :href and want to use it in ie.link(:href, 'bla').click. So the value of :href in the link function must be replaced by the string value. Therefore I need to do some conversion I think, but I don't know how. Any suggestion? Cheers, John -- You received this message

Re: [wtr-general] String to watir object

2010-02-16 Thread Željko Filipin
On Tue, Feb 16, 2010 at 3:37 PM, JArkelen johnvanarke...@gmail.com wrote: I have a string value of :href and want to use it in ie.link(:href, 'bla').click. Can you provide more data? How does your script looks like? This does not work? how = :href browser.link(how, bla).click You can convert

Re: [wtr-general] My blog about Watir and RSpec

2010-02-16 Thread Željko Filipin
On Thu, Feb 11, 2010 at 10:34 PM, Jarmo Pertman jarm...@gmail.com wrote: i'm waiting for any feedback I am reading your posts, and my first feedback would be to slightly increase font size on your blog. :) Željko -- You received this message because you are subscribed to the Google Groups

[wtr-general] Re: Firewatir cannot find an element on the page

2010-02-16 Thread QAguy
Any updates on this? Thanks. On Feb 11, 1:06 pm, QAguy qablogm...@gmail.com wrote: You need to register as a user and verify your account (its free). Then upload a video and go to the folder that video is in. Once in the folder select the checkbox for that video and click the move option

Re: [wtr-general] My blog about Watir and RSpec

2010-02-16 Thread Alan Baird
Jarmo - I'm still reading but this is good stuff. +1 on the font size tho :) Alan On Tue, Feb 16, 2010 at 9:34 AM, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Thu, Feb 11, 2010 at 10:34 PM, Jarmo Pertman jarm...@gmail.com wrote: i'm waiting for any feedback I am reading your

[wtr-general] Re: watir suite hanging issue

2010-02-16 Thread Brian Tomlin
I had a problem like this before and the workaround I used was to kick off a thread that checked something in the browser every so often to make sure that it wan't stuck. In my script I did something like this: def check_for_freeze(browser) # Kick off a new thread and keep checking the url

[wtr-general] Issue with the wrapper built around the .text method in Firewatir

2010-02-16 Thread Betsy
Hi all, We had tried to build a wrapper around the .text method in FireWatir as below:- #obj is the object we want to fetch the text of htmlIp= obj.html htmlbrs=htmlIp.split(br) textIp= obj.text finalstr= for i in 0..htmlbrs.length-1 #cleaning of tags tagCounter=0

Re: [wtr-general] Re: watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Hey Brian, Thanks a lot, i'll try out the solution u provided and get back to you soon regards, Mahesh On Wed, Feb 17, 2010 at 3:18 AM, Brian Tomlin tendonstren...@gmail.comwrote: I had a problem like this before and the workaround I used was to kick off a thread that checked something in

Re: [wtr-general] Re: watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Thanks Reed, I tried *browser.refresh* in places usually my script hangs. Am waiting for my suite to run completely, I'll verify the result and if still same issue, then I'll try out the solution provided by Brian If both doesn't work out to me, then ill log a bug regards, Mahesh On Tue, Feb