Open wstaples opened 9 years ago
At a guess, I'd say this is the same as the unresolved issue #6. Somewhere along the line an ANSI Win32 API is getting a wide character.
The real fix is to resolve issue #6 though it might be possible to throw some exception trapping around some of the API calls if you can narrow down where the non ASCII text is coming from.
Hello,
I'm attempting to automate a microsoft access database using cucumber. I can create a new instance of the application using
app = Source_Code_Database.new
I can get the process id with
app.pid
however when I try to do anything else like:
app.main_window.window_class
orapp.main_window.children.count
I get the error "invalid byte sequence in US-ASCII (ArgumentError)"
Here is the class I'm using
Everything is english I am on Windows 7 64bit Ruby 1.9.3p448 (2013-06-27) [i386-mingw32] win32-autogui (0.5.2)