Tests not entering correct figure in text box.
We have an C++ application with Telerik controls and Test Complete looks to be recording the test fine but on play back its truncating some of the SetText entries.
The test records entering 10 into a text box, but playback will truncate it to 1 for some reason.
This is happening on numerous forms.
Example of code:
Set radTextBox = radWizard.panel5.tboxAddress1
Call radTextBox.HostedTextBoxBase.Click(24, 5)
Call radTextBox.SetText("")
Call radTextBox.SetText("Address ")
Call radWizard.Click(400, 426)
Set radMaskedEditBox = radWizard.panel2.mboxDiscountPercent
Call radMaskedEditBox.mboxDiscountPercent.Click(0, 11)
Call radMaskedEditBox.SetText("10.00")
Error from TC:
The editor cannot contain more than 1 symbols.
The text '10.00' has been truncated to '1'.