[Wtr-general] Can't Control JavaScript PopUp Window....

2006-11-29 Thread san
Basically When I Click On A Link A PopUp Appears With Some New Links... I Want To Click On One Of Them... But... The Very Third Line Of... [i]require 'rubygems' require 'watir' require 'watir/contrib/enabled_popup' [/i] Throws Error

Re: [Wtr-general] ie.minimize broken in watir-1.5.1.1127

2006-11-29 Thread Željko Filipin
On 11/27/06, Charley Baker [EMAIL PROTECTED] wrote: I just ran through the same steps you list below and didn't have a problem. The use of autoit for controlling the window state of ie hasn't changed for quite some time and should be installed as part of your install. Is it working with

Re: [Wtr-general] Can't Control JavaScript PopUp Window....

2006-11-29 Thread Cain, Mark
What version of Watir are you using? --Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of san Sent: Wednesday, November 29, 2006 5:49 AM To: wtr-general@rubyforge.org Subject: [Wtr-general] Can't Control JavaScript PopUp Window Basically When I

[Wtr-general] abnormal program termination error message while playing back a script

2006-11-29 Thread vijay
Hi people, My name is Vijay. I am new to Watir. Occasionally, while playing back the script, which does a simple operation in our application, the script hangs with an error message, abnormal program termination, in its window (where the command, 'puts', will write its output). As said

Re: [Wtr-general] Can't Control JavaScript PopUp Window....

2006-11-29 Thread vijay
Hi Sandeb, I also used to get that error in the 'enabled_popup' line but it does not seem to come after the previous version of 'watir gem' (1.5.1.1100) was uninstalled and the latest version (1.5.1.1127) was installed. Try that. It may work for you also. You may install the latest version

[Wtr-general] list of watir commands

2006-11-29 Thread vijay
Hi people, I have got a small doubt. Is there some place where one can find the list of commands that are available in Watir. When I went through this forum searching for some issue, I found a lot of new commands like clickWindowsButton, clickWindowsButton_hwnd, ie.enabled_popup(5) etc. If

Re: [Wtr-general] list of watir commands

2006-11-29 Thread Željko Filipin
On 11/29/06, vijay [EMAIL PROTECTED] wrote: Is there some place where one can find the list of commands that are available in Watir. http://wtr.rubyforge.org/rdoc/index.html But I think it is for 1.4.1. -- Zeljko Filipin zeljkofilipin.com ___

Re: [Wtr-general] Is there a way to make file_field.set faster?

2006-11-29 Thread Željko Filipin
Mark, Thanks a lot. startClicker works double faster than file_field.set. Paul, I will try autoit tomorrow, and see if it is even faster. -- Zeljko Filipin zeljkofilipin.com ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] [Wtr-General] Problem with set_text and dialog boxes

2006-11-29 Thread Howard
I HAVE FOUND AN ANSWER! I changed the watir.rb to not use set_text. Instead, I moved the code from set_text to the two places that called it (set-combobox-text for one.) It now works every time. Debug showed it never actually called the set-text.

Re: [Wtr-general] abnormal program termination error message while playing back a script

2006-11-29 Thread Charley Baker
This is a known issue with Watir and Ruby 185, this will work with Ruby 182, the Jira issue is here: http://jira.openqa.org/browse/WTR-86 -Charley On 11/29/06, vijay [EMAIL PROTECTED] wrote: Hi people, My name is Vijay. I am new to Watir. Occasionally, while playing back the script, which

Re: [Wtr-general] ie.minimize broken in watir-1.5.1.1127

2006-11-29 Thread Charley Baker
The errors from core_tests.rb should be fixed now. The latest xpath test was getting in the way causing spurious errors. I've looked over the changes and don't see anything inherently that would cause this problem. I can't reproduce it personally and I'm stumped. Let me know if you come up with

[Wtr-general] setting text field in table

2006-11-29 Thread Dave Munns
This problem seems to defy conventional solutions. Does someone have a solution ? The html: irb ie.frame('fraDataZone').table(:index,1).table(:index,1)[1].html = \r\nTR udefReportName=\Dashboard - Machine Change Management\TD vAlign=bottom align=right udefParmName=\StartDate\Start

Re: [Wtr-general] setting text field in table

2006-11-29 Thread Paul Rogers
the text field doesnt have a name, or id try using index ie.frame('fraDataZone').text_field(:index,1).set('11/11/2005 12:00:00PM') - Original Message - From: Dave Munns [EMAIL PROTECTED] Date: Wednesday, November 29, 2006 4:10 pm Subject: [Wtr-general] setting text field in table