Forum Discussion
Marsha_R
Champion Level 3
8 years agoYou can try using Keys instead of SetText. Often that works out better.
If it does not, take a look at that field with Object Spy and post the Extended properties for us to see.
- colinkelly8 years agoOccasional Contributor
Ya, its the exact same issue with a Keyword test.
I had already tried that.Do you just want a list of everything under Extended from the Object Spy?
- tristaanogre8 years agoEsteemed Contributor
Actually, what Marsha_R mentioned is not about a Keyword test but using the Keys method instead of SetText.
So, basically change your code to this (note the BOLD text) and see if this works.
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.Keys("10.00[Enter]")