Forum Discussion
rraghvani
Champion Level 3
3 months agoYou have defined localParent to be an object of inputElement.parentElement. You can access the property values of localParent (as shown in the watch list) e.g.
localParent.clientHeight
localParent.defaultChecked
localParent.disabled
localParent.innerHTML
but you have not inherited any of the methods. Therefore, FindAll will not work because it's a JavaScript DOM and not TestComplete’s Test Object Model
What does inputElement and parentElement reference to in the Object Browser? And how have you defined them?