Forum Discussion
TanyaYatskovska
Alumni
12 years agoHi Gopal,
According to the error, TestComplete cannot find the following object in the object tree:
Sys.browser.pageLogin.panelMain.panelWprClearfix.sectionContent.panelColUserlogin.formCxLoginLeftPane.panelWprField1.textboxPassword
This may happen when the object isn't fully loaded. Thus, it's not ready for testing. Try using the following modified script:
Set panel = form.panelWprField1
If panel.WaitAliasChild("textboxPassword", 5000).Exists Then
Set textbox2 = panel.textboxPassword
Call textbox2.Click(58, 27)
End If