[wtr-general] Installation issues

2013-11-01 Thread gary
Hi all, Has anyone been having installation issues lately? I've used 
watirbook instructions previously with no problems but the last few 
attempts have failed when trying to install watir. Oddly I installed on 2 
windows 7 vm's 2 days ago without hitch, but i tried adding to another w7 
and a w8 vm yesterday with the following error:

ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: 
certif
icate verify failed 
(https://rubygems.global.ssl.fastly.net/quick/Marshal.4.8/co
mmonwatir-4.0.0.gemspec.rz)

I then tried again today on W8 vm's with the same issue. Anyone else 
encountered this?

Regards, G

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com

--- 
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 watir-general+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[wtr-general] Re: Common Solution for Autoauth for all the browsers supported by Watir-Webdriver

2013-11-01 Thread santosh teegala
Hi MEMBEDb,

Thanks for the reply.. 

Do you have a code sample by any chance. 

Thanks
Santosh

On Thursday, October 31, 2013 5:06:35 PM UTC-7, MEDBEDb wrote:
>
> Try adding your Auth methods in before(:each) hooks for each test 
> execution.
>
>
> On Monday, October 28, 2013 11:41:48 PM UTC+2, santosh teegala wrote:
>>
>> Hi All,
>>
>> I am trying to automate a site using Watir-Rspec-Taza framework. 
>> Web site needs a AutoAuth when i visit the page and also it ask for 
>> username/password when go to https:// pages of the site. 
>> The initial AutoAuth i can handle with passing username:password in the 
>> url. But when i try to test something if it gos to https:// pages the popup 
>> comes out again. 
>>
>> Any help to solve this problem? I am looking for  a common approach for 
>> all the supported browser. 
>>
>>
>> Thanks
>> Santosh
>>
>

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com

--- 
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 watir-general+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[wtr-general] Re: does watir classic, not webdriver support IE 10 ?

2013-11-01 Thread Jarmo Pertman
This is definitely not a problem with watir-classic, but related with the 
Ruby itself. It depends of the code you're using there. Try to localize the 
problem by removing some lines using non-ascii symbols to see if you've 
found the culprit and then you have easier time for fixing them.

Jarmo

On Wednesday, October 30, 2013 10:52:02 AM UTC+2, satyendra kumar wrote:
>
> Hi Jarmo,
>
> I am using Ruby 1.9.3 with Watir-classic 3.6.0 on Win8. I am getting 
> syntax error in some file (those files work fine with Ruby 1.8.7)
>
>  invalid multibyte char (US-ASCII)
>
> I have tried adding these line to problematic file
>
> '# encoding: utf-8'
>
> and 
>
> Encoding.default_external = Encoding::UTF_8
> Encoding.default_internal = Encoding::UTF_8
>
> But none of these helped.
>
> On Sunday, September 29, 2013 7:48:42 PM UTC+5:30, Jarmo Pertman wrote:
>>
>> I have tried it even with Ruby 2.0. There shouldn't be any problems with 
>> 1.9.3 too. What kind of problems are you seeing?
>>
>> Jarmo Pertman
>> -
>> IT does really matter - http://itreallymatters.net
>>
>>
>> On Saturday, September 28, 2013 5:42:06 PM UTC+3, Anukul wrote:
>>>
>>> Jarmo, what version of ruby did you use when you verified this worked 
>>> for IE10 with Win8?  I didn't get promising results with ruby 1.9.3  
>>>
>>> On Saturday, November 17, 2012 5:21:43 PM UTC+5:30, Jarmo Pertman wrote:

 I've verified that Watir-Classic works well with IE10 on Win8.

 Jarmo Pertman
 -
 IT does really matter - http://itreallymatters.net


 On Saturday, November 3, 2012 1:57:45 PM UTC+2, Jarmo Pertman wrote:
>
> To be honest i haven't tried it, since i don't have any Win 8 boxes. 
> It should work though.
>
> Give it a try an let us know!
>
> Jarmo Pertman
> -
> IT does really matter - http://itreallymatters.net
>
> On Wednesday, October 31, 2012 7:01:25 PM UTC+2, bobby sharma wrote:
>>
>> does watir classic support IE 10 on win 8 box ? 
>
>

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com

--- 
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 watir-general+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [wtr-general] Re: does watir classic, not webdriver support IE 10 ?

2013-11-01 Thread John Fitisoff


You're on the right track but that error is saying that something is still 
expecting US_ASCII and failing when it runs into a multibyte character. What is 
trying to read the string at the point of failure? Do you have a stack trace?




On Wednesday, October 30, 2013 1:54 AM, satyendra kumar 
 wrote:
 
Hi Jarmo,

I am using Ruby 1.9.3 with Watir-classic 3.6.0 on Win8. I am getting syntax 
error in some file (those files work fine with Ruby 1.8.7)

 invalid multibyte char (US-ASCII)

I have tried adding these line to problematic file

'# encoding: utf-8'

and 

Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8

But none of these helped.


On Sunday, September 29, 2013 7:48:42 PM UTC+5:30, Jarmo Pertman wrote:
I have tried it even with Ruby 2.0. There shouldn't be any problems with 1.9.3 
too. What kind of problems are you seeing?
>
>
>Jarmo Pertman
>-
>IT does really matter - http://itreallymatters.net
>
>
>On Saturday, September 28, 2013 5:42:06 PM UTC+3, Anukul wrote:
>Jarmo, what version of ruby did you use when you verified this worked for IE10 
>with Win8?  I didn't get promising results with ruby 1.9.3  
>>
>>On Saturday, November 17, 2012 5:21:43 PM UTC+5:30, Jarmo Pertman wrote:
>>I've verified that Watir-Classic works well with IE10 on Win8.
>>>
>>>
>>>Jarmo Pertman
>>>-
>>>IT does really matter - http://itreallymatters.net
>>>
>>>
>>>On Saturday, November 3, 2012 1:57:45 PM UTC+2, Jarmo Pertman wrote:
>>>To be honest i haven't tried it, since i don't have any Win 8 boxes. It 
>>>should work though.


Give it a try an let us know!



Jarmo Pertman
-
IT does really matter - http://itreallymatters.net
On Wednesday, October 31, 2012 7:01:25 PM UTC+2, bobby sharma wrote:
does watir classic support IE 10 on win 8 box ? 
-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.
 
watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com
 
--- 
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 watir-general+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com

--- 
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 watir-general+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.