[wtr-general] Re: It doesn't work when clicking a button in Updatepanel

2011-06-27 Thread Green Yin
, Jun 20, 2011 at 6:08 AM, Green Yin green...@gmail.com wrote: My web application uses the updatepanel control. See my watir scripts: { ie = Watir::IE.start(url) ie.text_field(:id, txtLogin).set(XXX) ie.text_field(:id, txtPassword).set(xxx) # Without using updatepanel ie.button(:id

[wtr-general] Re: It doesn't work when clicking a button in Updatepanel

2011-06-27 Thread Green Yin
? Thanks Regards, Ankur Gera On Mon, Jun 20, 2011 at 6:08 AM, Green Yin green...@gmail.com wrote: My web application uses the updatepanel control. See my watir scripts: { ie = Watir::IE.start(url) ie.text_field(:id, txtLogin).set(XXX) ie.text_field(:id, txtPassword).set(xxx

[wtr-general] Re: It doesn't work when clicking a button in Updatepanel

2011-06-27 Thread Green Yin
Hi Chuck, Sorry, I never use the IRB, but I could sure that it wasn't a time issue. I thought it was related to the updatepannel control, before we never met the problem before applying the control. On Jun 23, 9:07 am, Chuck van der Linden sqa...@gmail.com wrote: On Jun 20, 3:08 am, Green Yin

[wtr-general] It doesn't work when clicking a button in Updatepanel

2011-06-20 Thread Green Yin
My web application uses the updatepanel control. See my watir scripts: { ie = Watir::IE.start(url) ie.text_field(:id, txtLogin).set(XXX) ie.text_field(:id, txtPassword).set(xxx) # Without using updatepanel ie.button(:id, btnLogin).click # Using updatepanel ie.button(:id, btnAdd).click } It's no