[wtr-general] Re: FireWatir bug/anomaly

2009-04-13 Thread Angrez Singh
Can somebody put this in JIRA so that we can make Firewatir/Watir more compatible? - Angrez On Sun, Apr 12, 2009 at 3:32 PM, Alex Collins a.j.collins...@gmail.comwrote: I've just had a quick look, also on FF3/Mac. The issue is not that the select_list element is invisible - you can address

[wtr-general] Re: FireWatir bug/anomaly

2009-04-13 Thread Bret Pettichord
I think there are 2 bugs here. 1. Firewatir does not issue an error when users use undefined methods. 2. SelectList#set needs to be defined as an alias for SelectList#select (as it is in IE-Watir). Bret Angrez Singh wrote: Can somebody put this in JIRA so that we can make Firewatir/Watir

[wtr-general] Re: FireWatir bug/anomaly

2009-04-13 Thread Alex Collins
On 13 Apr 2009, at 19:59, Bret Pettichord wrote: I think there are 2 bugs here. 1. Firewatir does not issue an error when users use undefined methods. Agree with this. I had a quick look but my trivial catch-all patch breaks various tests. I'll have a look tomorrow at fitting this into

[wtr-general] Re: FireWatir bug/anomaly

2009-04-12 Thread Alex Collins
I've just had a quick look, also on FF3/Mac. The issue is not that the select_list element is invisible - you can address it correctly as show by calling: @browser.select_lists or @browser.select_list(:id, 'cAbb') Calling the methods method on the element reveals that the set method you are

[wtr-general] Re: FireWatir bug/anomaly

2009-04-12 Thread Chris McMahon
Calling the methods method on the element reveals that the set   method you are calling is not present. I was surprised to see that   this method exists - I've always used the select method, which works   fine. The RDoc reveals that set should be an alias for select. I would suggest using

[wtr-general] Re: FireWatir bug/anomaly

2009-04-12 Thread Paul Rogers
there is some functionality in firewatir ( at least the version that I had been using) that doesnt generate exceptions when there is a javascript exception. Id fixed this some where once ( probably in a local copy of firewatir) , but I guess the code got lost Paul On Sun, Apr 12, 2009 at 8:16

[wtr-general] Re: FireWatir bug/anomaly

2009-04-11 Thread Jarmo Pertman
Try to print out html for that select_list to make sure that you are really dealing with the correct select_list and there aren't any hidden ones or whatsoever. Or try just plain old .flash method to see if correct list is flashing :) Jarmo On Apr 5, 7:07 am, Chris christopher.mcma...@gmail.com