Forum Discussion

andryt29's avatar
andryt29
Occasional Contributor
12 years ago

Incomplete Keyboard input in TC9 but not in TC7.52

Hi everybody!

I have a problem with TestComplete 9



when I do:

 MyObject.Keys("îlots")  I have a warning  => Incomplete Keyboard input

and TestComplete write in my application "lots", but not "îlots"



when I do that with TestComplete 7.52 I don't have the problem and testComplete 7.52 write "îlots" in my application



 PS: I was convert my project TestComplete 7.52 with TestComplete 9 so I must have the same properties of project



=>  I was follow this topic : http://support.smartbear.com/viewarticle/27306/

=> so I added many language pack in my Panel control but It doen't work anymore

Thanks a lot

4 Replies

  • TanyaYatskovska's avatar
    TanyaYatskovska
    SmartBear Alumni (Retired)

    Hi,


     


    Try using the wText property:


    MyObject.wText("îlots")


     


    >>


    => so I added many language pack in my Panel control but It doen't work anymore


    <<


    You need to add the language pack corresponding to the language used in your app.


     

  • andryt29's avatar
    andryt29
    Occasional Contributor
    Hi Tanya,

    I want to simulate MyObject.Keys() method and not force MyObject.Text or MyObject.wText

    Thanks.



    And why dit it work in TC 7.52 but not in TC 9 ?
  • Hi. 



    I would suggest to use the recorder to check what TestComplete actually record when you use the keyboard to input "îlots"



    I had something similar (incomplete keyboard input) when using Keys method with '@' character.



    If I used TextObject.Keys("email@adress.com") I had a warning.

    The recorder gave me the solution : TextObject.Keys("emai~^àadress.com");



    I changed all my input to switch from @ to ~^à (CTRL + ALT + à).



    Guillaume.