From: Bret Pettichord Date: 2007-02-12T07:00:08+09:00 Subject: Re: Ajax woes On Feb 5, 8:56 am, Patrick Spence wrote: > def test_0001_username() > sleep(2) > @@ie.text_field(:id,'ctl00_lgnLogin_UserName').set('TEST-5038') > end Actually, the latest version (1.5) of Watir *does* support Ajax. Thus: def test_0001_username() Watir::wait_until {@@ie.text_field(:id, 'ct100_lgnLogin_UserName').exists?} @@ie.text_field(:id,'ctl00_lgnLogin_UserName').set('TEST-5038') end Bret