[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
invalid multibyte char (US-ASCII)

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 
satyendramar...@gmail.com 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.


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

2013-10-30 Thread satyendra kumar
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.


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

2013-09-29 Thread Jarmo Pertman
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.


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

2013-09-28 Thread Anukul
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.


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

2012-11-17 Thread Jarmo Pertman
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


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

2012-11-03 Thread Jarmo Pertman
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