[wtr-general] Re: Automating a File uploader popup

2009-06-18 Thread Natasha Ranney
Hey orde, You are right. There is an object tag associated with it and that button is a Flash implementation. I have come across that we have flash supported extension for watir flashwatir. Just was wondering if its useable. Or is there an alternative solution like using some windowsole api

[wtr-general] Re: How to compare Text in Links

2009-06-18 Thread Željko Filipin
On Thu, Jun 18, 2009 at 12:56 PM, Vishal bvkon...@gmail.com wrote: It doesn't work. I hope this will not sound rude, but how do you expect me to help you now? Saying `it does not work` does not give me any information what could be wrong. What did you do? What happened when you did it? Any

[wtr-general] Re: How to compare Text in Links

2009-06-18 Thread Vishal
Sorry , Actually it was using only one = instead of two == while comparing. Now i changed it and it is working fine. Thanks for you help Željko. Vishal On Jun 18, 4:00 pm, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Thu, Jun 18, 2009 at 12:56 PM, Vishal bvkon...@gmail.com wrote:

[wtr-general] Re: Capturing text in a processing your request page

2009-06-18 Thread jason
how about browser.html.include(We are processing your request) On 16 Jun., 00:45, George george.sand...@gmail.com wrote: I tried search the forum but couldn't come up with a situation similar to mine. I'm filling out a form, which takes me to a 'Review your order' page. When I click the

[wtr-general] attach while browser is still processing

2009-06-18 Thread Eric Thompson
Watir version: 1.6.2 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to watir-general@googlegroups.com Before posting, please read the following guidelines:

[wtr-general] attach while browser is still processing

2009-06-18 Thread Eric Thompson
Watir Version: 1.6.2 Browser: IE7 I have notice an issue with attaching to a browser window while that window is still processing a request. This causes the browser session to hang indefinitely. When registering a user account in our web app, the registration process sends a verification email

[wtr-general] Re: Automating a File uploader popup

2009-06-18 Thread orde
I briefly tried flash-watir, but it's firefox only. I know that Selenium has some flash-testing capacity, but I haven't tried it. orde --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to

[wtr-general] Re: attach while browser is still processing

2009-06-18 Thread brettsykes
The next time this happens open up irb and try to call Watir::IE.attach to the hanging browser window from there. Does this work or does it hang from the command line as well? On Jun 18, 11:09 am, Eric Thompson eri...@gmail.com wrote: Watir Version: 1.6.2 Browser: IE7 I have notice an issue

[wtr-general] Setting HTML Properties

2009-06-18 Thread Ray
Is there a way to set a property in html using watir? I have a table that is not visible and i need to set it visibility property to visible so that watir can click on it. Thanks in advance Ray --~--~-~--~~~---~--~~ You received this message because you are

[wtr-general] Re: attach while browser is still processing

2009-06-18 Thread Michael Hwee
To answer your question, it is 'No'. I have similar experience with this issue, but not exactly situation in Eric's case. The attach() function uses Shell.Application loop to search for the IE window. Unfortunately, this weird IE would not show up at all. It just basically stuck there.

[wtr-general] Re: Setting HTML Properties

2009-06-18 Thread Michael Hwee
I think you could. ie.table(:index,1).attributes['display'].value='block' ie.table(:index,1).link(:index,1).click - Original Message From: Ray rayjh...@gmail.com To: Watir General watir-general@googlegroups.com Sent: Thursday, June 18, 2009 4:13:31 PM Subject: [wtr-general] Setting

[wtr-general] Re: Watir like test tool for windows-applications

2009-06-18 Thread Zhimin
I have used AutoIT3 to test a complex PowerBuilder application on Windows, created a simple framework helping me doing that: rFormUnit. I could use Ruby syntax and page objects, such as in test case main_window.click_login in main_window.rb def click_login # defined in constructor,