Hi Kirill
I am using javascript, so I tried Zap.Common.ReplaceSubString:
var myVar= Zap.Common.ReplaceSubString(Application("My app").View("My View").Object("Text").GetText(), " ", "");
if (myVar.Contains("20123.123")) {
}
I also tried this one:
var myVar = Application("My app").View("My Viiew").Object("Text").GetText();
var newVar = myVar.replace(" ", "");
if (newVar.Contains("20123.123")) {
}
But it is not working, it shows an error when I try to use method Contains() with the variable (“O objeto não da suporte para a propriedade ou método”).
Can you help me?
Thank you.