I have a query on handling Chinese text values in TestComplete.
I have one weird scenario : Variable which has value in Chinese traditional (zh_TW) changes string format to Chinese simplified (zh_CN) on its own.
I wrote code as :
Project.Variables.var1 = “幻燈片播放” //zh_TW
Log.Event(Project.Variables.var1) printed in logs as “幻灯片放映”. //zh_CN
I am not able to understand how come there is a change in string encodings. Looks like TestComplete does not support traditional Chinese , it only supports Simplified Chinese.
Could you please suggest me some solution which can maintain the string encoding formats?