Are you using page-object gem, if so, I had this issue but not with frames but typing into any text field. The issue got resolved though with watir/selenium webdriver calls directly. Sorry if this doesn't provide any solution, but still thought would chip in my comments.
On Thursday, December 25, 2014 11:51:42 AM UTC-5, Andrew Petrenko wrote: > > Hello. > I have popups with frames (not iframes). And when I set values into > textboxes, selectlists and others it takes about 5 seconds for every > control. > I wonder, is this a defect of watir or there is some other way for > workaround? > > Here is my code: > @browser.window(:title => "Add New Plan").use do > on(AddNewPlan) do |page| > page.in_frame(:name => 'fraContainer') do |frame| > page.text_field_element(:id => 'cntrPlanName', :frame => > frame).value = "Lorem Ipsum" > page.button_element(:id => 'btnOK', :frame => frame).click > sleep 2 > end > end > end > -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected] --- You received this message because you are subscribed to the Google Groups "Watir General" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
