Forum Discussion
colinkelly
8 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?
tristaanogre
8 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]")