[wtr-general] send keystrokes to ie frame - text field

2009-04-29 Thread deralex
Hi, i am actually getting into watir and i really like it. But i am missing sending keystrokes to IE text field in a frame. Case: We have quick search function e.g. adding a name to a field "test" then the db is search for all ppl. with "test" in the name. After this i go a list displayed with a

[wtr-general] Re: problem with fill fields on a login page (maybe frame problem)

2009-04-27 Thread deralex
found myself via the Watir WebRecorder out the the right line is: ie.frame(:index, 53).image(:index, 4).click - so okay with ie.show_frames { |t| puts t.to_s } i can identify the frame 53 but how i can see the image index? On 27 Apr., 12:35, Alexander Fedtke wrote: > Thanks for tip i got the

[wtr-general] Re: problem with fill fields on a login page (maybe frame problem)

2009-04-23 Thread deralex
thanks for the fix it is runing on the pc of a friend but not on my pc still got the error CODE: # the Watir controller require "watir" # set a variable test_site = "https://www.go3-stage.engelvoelkers.com/dGPS3.pre/ default.jsp" # open the IE browser ie = Watir::IE.new # print some comments pu

[wtr-general] problem with fill fields on a login page (maybe frame problem)

2009-04-23 Thread deralex
Hi i just started with Watir and i not even can login: The page which i want to acess is: https://www.go3-stage.engelvoelkers.com/dGPS3.pre/default.jsp I want to fill Login & PW and click on GO Here my script approach: ---