Re: [wtr-general] Re: ajax and unable to locate element

2010-04-08 Thread windy
please open irb, try 'browser.show_frames' maybe it's in a frame, so you can't get it . hope it's useful. 在 Thu, 08 Apr 2010 11:26:55 +0800,Sal Jamil salem.m.ja...@gmail.com 写道: I am sorry, it is not available on the web. I can give you the source of the page but it references a lot of

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-08 Thread Sal Jamil
Thanks. I tried that using IRB and I got There are 0 frames BUT Watir did not have a problem locating the new input field using IRB but it still throws the same Exception running the test from a file. I am going to google further on this issue. Thanks again. On Thu, Apr 8, 2010 at 12:12 PM, windy

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-08 Thread windy
That's a strange thing . You should check the code of the file again . Google is good, Good luck to you. 在 Fri, 09 Apr 2010 00:24:47 +0800,Sal Jamil salem.m.ja...@gmail.com 写道: To unsubscribe, reply using remove me as the subject. -- Before posting, please read http://watir.com/support.

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-08 Thread Sal Jamil
I added a sleep(5) after the fire_event and Watir was able to find the new field: b.radio(:id, entryModeManual).fire_event(onclick) sleep(5) b.text_field(:name, 'order_ref[1]').set('OE123') Thanks for the help On Thu, Apr 8, 2010 at 12:24 PM, Sal Jamil salem.m.ja...@gmail.com wrote: Thanks. I

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-08 Thread Wesley Chen
Please don't use the method: try again The method below is really helpful. Watir::Waiter.wait_until{$ff.div(:id, addAlbumLink).exists?} Wesley. For life, the easier, the better. On Fri, Apr 9, 2010 at 2:00 AM, Sal Jamil salem.m.ja...@gmail.com wrote: mber of tries and wait between tries --

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Sal Jamil
I just tried that and I am getting the same error. On Wed, Apr 7, 2010 at 10:19 PM, Rats crapats...@yahoo.com.au wrote: On Apr 8, 12:16 pm, sal salem.m.ja...@gmail.com wrote: I am loading a form with an embedded table using Ajax. I am having trouble locating elements that are part of the

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Wesley Chen
If there is ajax, please use *fire_event* before you *set* Wesley. For life, the easier, the better. On Thu, Apr 8, 2010 at 11:09 AM, Rats crapats...@yahoo.com.au wrote: On Apr 8, 2:59 pm, Sal Jamil salem.m.ja...@gmail.com wrote: I just tried that and I am getting the same error. Is this

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Sal Jamil
I used the fire_event ( @b.radio(:id, entryMode_manual).fire_event(onclick)) and I am still getting the same error. The event is firing fine since I am actually getting the div populated properly back from the server. Thanks On Wed, Apr 7, 2010 at 11:12 PM, Wesley Chen cjq@gmail.com wrote:

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Sal Jamil
I am sorry, it is not available on the web. I can give you the source of the page but it references a lot of libraries and server code that I am not sure it will be helpful. Thanks for your help. On Wed, Apr 7, 2010 at 11:09 PM, Rats crapats...@yahoo.com.au wrote: On Apr 8, 2:59 pm, Sal Jamil

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Sal Jamil
Thanks. I am using jquery to bind a click event to a button. Through Watir, I am setting the button and that event is firing correctly and populating the div from the server. Do I need to also do a fire_event? Isn't that duplicating the button set event? On Wed, Apr 7, 2010 at 11:12 PM, Wesley

Re: [wtr-general] Re: ajax and unable to locate element

2010-04-07 Thread Wesley Chen
Of course not. Wesley. For life, the easier, the better. On Thu, Apr 8, 2010 at 11:25 AM, Sal Jamil salem.m.ja...@gmail.com wrote: Thanks. I am using jquery to bind a click event to a button. Through Watir, I am setting the button and that event is firing correctly and populating the div