[wtr-general] Strange issue with ie.attach()

2009-04-30 Thread Isabel
Hi All, Yesterday while working on watir, suddenly ie.attach() stopped working for me. It started working again on restarting the system. Has anyone of you come across something like this? If yes, why is this so? Thanks and Regards. --~--~-~--~~~---~--~~ You

[wtr-general] Re: Strange issue with ie.attach()

2009-04-30 Thread Željko Filipin
On Thu, Apr 30, 2009 at 08:52, Isabel joybe...@gmail.com wrote: why is this so? It is described in painful detail here: http://twitter.com/zeljkofilipin/status/1651116660 Disclaimer: this is not my opinion, I just quote what other people think :) Željko -- http://watirpodcast.com/

[wtr-general] Re: Strange issue with ie.attach()

2009-04-30 Thread Isabel
Hi Željko, I really appreciate your effort to at least pass on opinions from others... But I could not find any text on the link you gave apart from Windows is a steaming pile of crap. :) Is this the answer to my query? Or was I looking at the wrong place? Thanks... On Apr 30, 12:40 pm,

[wtr-general] Re: Strange issue with ie.attach()

2009-04-30 Thread Željko Filipin
On Thu, Apr 30, 2009 at 09:59, Isabel joybe...@gmail.com wrote: But I could not find any text on the link you gave apart from Windows is a steaming pile of crap. :) Yes, that was my answer. I use Windows every day, so please take it as a joke. I have also found that restarting Windows can fix

[wtr-general] Problem with ie.goto when we used to navigate between the tabs

2009-04-30 Thread Shweta
Hi I am using ie.goto(corresponding tab url) to navigate between the tabs by script is running fine its performing the actions in each tab,whereas in my application until unless i fill the valid data in all the tabs it will not navigate to other page from last tab.While running it performs the

[wtr-general] Re: Does watir::IE.attach() :hwnd support embedded browsers ?

2009-04-30 Thread mwolfe
I have been working more on the issue and have discussed it on my blog here: http://www.wolfewebservices.com/blog/attaching-watir-embedded-ie-browser I Haven't yet come up with a solution yet but just thought i'd share my current knowledge of the problem. On Apr 29, 12:28 pm, mwolfe

[wtr-general] Error when building commonwatir - FIX (url) is not a URI

2009-04-30 Thread alex
Hi all, Thanks to Angrez and http://wiki.openqa.org/display/WTR/Building+Watir I was able to find the latest watir files, and tried to build it. Everything was fine, except when building commonwatir, when I got the error: FIX (url) is not a URI

[wtr-general] Re: Error when building commonwatir - FIX (url) is not a URI

2009-04-30 Thread Bill Agee
I had that happen too, last week, when I was trying to get the latest FireWatir attach changes. :) I think what I did to work around this was to edit commonwatir/manifest.txt and remove the line for README.txt. I can't remember making any other changes so hopefully this was it. Then, rake gems

[wtr-general] Re: Error when building commonwatir - FIX (url) is not a URI

2009-04-30 Thread alex
Hi Bill, Thanks for replying. I followed your instructions, but unfortunately the error is still there ... Is there anything else you did last week? Thanks, Alex On Apr 30, 9:34 pm, Bill Agee billa...@gmail.com wrote: I had that happen too, last week, when I was trying to get the latest

[wtr-general] Re: Error when building commonwatir - FIX (url) is not a URI

2009-04-30 Thread Bill Agee
Oh, whoops, yeah, my fix was actually different. Editing the manifest file doesn't help. The workaround that actually works is: 1) Edit watir/commonwatir/README.txt 2) Change line 3 to: * http://www.watir.com I think the value can be anything as long as it's a valid URL. :) This time 'rake

[wtr-general] Re: Error when building commonwatir - FIX (url) is not a URI

2009-04-30 Thread alex
Thanks a lot Bill. You were right, replacing *FIX (url) with a valid URL solved the problem. Alex On Apr 30, 11:14 pm, Bill Agee billa...@gmail.com wrote: Oh, whoops, yeah, my fix was actually different.  Editing the manifest file doesn't help. The workaround that actually works is: 1)

[wtr-general] Re: how to read data from a yaml file

2009-04-30 Thread sonny
On Apr 20, 9:46 pm, Fish hhfish...@hotmail.com wrote: yamlfile: items:     - user: user       pwd: pwd     - user: user1       pwd: pwd1 watir code: conf =YAML::load_file(**.yaml') items = conf[items] items.each do |item|    ie.text_field(:id,user).set(item[user]) end please