[wtr-general] To study watir,To share watir experience

2008-11-08 Thread scott
Dear: To study watir,To share watir experience,please allow me to join this group,THANKS --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@go

[wtr-general] Re: firewatir 1.6.2 does not support chinese characters?

2008-11-08 Thread jnxgn
I mean the conts[] contains chinese characters, watir can input the right ones but the firewatir input to the web form with messy ones. On 11月9日, 上午12时36分, jnxgn <[EMAIL PROTECTED]> wrote: > It seemed that firewatir 1.6.2 does not support chinese charaters > well, the following codes work at wati

[wtr-general] firewatir 1.6.2 does not support chinese characters?

2008-11-08 Thread jnxgn
It seemed that firewatir 1.6.2 does not support chinese charaters well, the following codes work at watir but failed at firewatir: # initialize the contents conts = [] File.open('contents.txt') do |f| f.each_line{|l| conts << l} end . . ie77.text_field(:name, 'HTML_speak_Conte

[wtr-general] Re: How to save a cookie and reload it?

2008-11-08 Thread jnxgn
Thanks a lot, acturelly I searched and read all the posts related to cookies in this group, but could not find some hints. what I need is to autopost in a forum by different users, I tried but failed the codes below: login with user_name_1 tmpcookie = ie.document.cookie posting with user_name_1

[wtr-general] How to reuse Firefox browser instance on Mac/Linux using FireWatir 1.6.2?

2008-11-08 Thread Zhimin
Hi, Thanks for another great release of Watir/FireWatir. I used to starting one Firefox (with jssh) window, then run all tests against that instance of browser. After upgrading to 1.6.2, a Firefox instance is started on my Mac for every single test file. I hacked firefox.rb to get as working

[wtr-general] Re: How to save a cookie and reload it?

2008-11-08 Thread alex.ikhelis
Hi, I assume you have problems with setting a cookie value? In this case, the first thing I would troubleshoot is: you should explicitly define the domain name for the session you would like to have the cookie value. This link can help: http://groups.google.com/group/watir-general/browse_thread/t

[wtr-general] Re: How to save a cookie and reload it?

2008-11-08 Thread jnxgn
When I do the autoposting in a forum, I usually login each time and it is time consuming, so I would like to set the cookie directory to save time and effort. On 11月3日, 下午1时06分, jnxgn <[EMAIL PROTECTED]> wrote: > I tried but failed to save a cookie to a file and reload it: > > in one application,