[wtr-general] Re: Clearing Security Information message box

2008-10-20 Thread juuser
Or you could disable showing this alert - dig into IE settings, there was something that disabled that warning. On Oct 17, 12:57 pm, Tony [EMAIL PROTECTED] wrote: Hi, If you want to always click on the yes button when you encounter a security alert, why dont you use an autoit script ..

[wtr-general] Re: Clearing Security Information message box

2008-10-20 Thread Tony
yes you could enable the below setting ... HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3\EnableMixedContent Set to 1 to stop displaying the warning. or else - Internet Options-Security-Custom level - Miscellaneous - Display Mixed Content - enable This will

[wtr-general] Re: Hom Make the RDoc support the unicode character, like Chinese, Japanese?

2008-10-20 Thread bugs apple
Thanks Yohei, it works well. 2008/10/16 Yohei [EMAIL PROTECTED] Hi, Can't you simply use Rdoc's --charset option? Regards, Yohei On Oct 15, 8:44 pm, bugs apple [EMAIL PROTECTED] wrote: Hi, all After developing more function using ruby, and generated the Rdoc, we find out the

[wtr-general] How to Speed Up the watir ?

2008-10-20 Thread bugs apple
Hi, all After research into the Watir::IE class, I can get this clue that set up @@speed and achieve her turning. But, I want to get others more turning information, such as what about @@attach_timeout or download time? what is more, I can't let this variable as 0 so that get the rapid speed?

[wtr-general] Re: Outlook recommendations

2008-10-20 Thread al3kc
Does anyone know how to click link from message? --~--~-~--~~~---~--~~ 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@googlegroups.com Before posting, please read

[wtr-general] Re: How to use Watir::Exception::TimeOutException

2008-10-20 Thread Chethan
Alan, Pls help me out in this. I was waiting for your reply. Thanks, Chethan On Oct 16, 8:19 pm, chethan sarathy [EMAIL PROTECTED] wrote: Hi Alan, Here is my execution flow. I have test cases where I am using begin rescue ensure end loop for exception handling. Here I want to

[wtr-general] Re: How to use Watir::Exception::TimeOutException

2008-10-20 Thread Charley Baker
I missed part of the conversation, so sorry if I'm missing something. Why are you not using Ruby's Test::Unit or Rspec as your framework? Rolling your own makes no sense. -c On Mon, Oct 20, 2008 at 11:47 AM, Chethan [EMAIL PROTECTED] wrote: Alan, Pls help me out in this. I was waiting for

[wtr-general] Re: Date Add or Subtract

2008-10-20 Thread Bret Pettichord
Here is some more cool stuff with dates. C:\watir-console 10.days.ago = Fri Oct 10 21:50:46 +0100 2008 1.month.from_now = Thu Nov 20 21:51:00 + 2008 2.weeks.since Time.local(2008,1,1) = Tue Jan 15 00:00:00 + 2008 Time.now - 1.day = Sun Oct 19 21:52:10 +0100 2008 Time.now +

[wtr-general] Re: How to use Watir::Exception::TimeOutException

2008-10-20 Thread Alan Baird
Chethan - Here is how you would apply a timeout loop to the code you provided: require 'test\unit' require 'timeout' class MyTest Test::Unit::TestCase def test_sample_01 begin Timeout::timeout(3) do require testcase_01 # test cases end rescue Timeout::timeout