Hi there,
I'm a new (like a month or so) to TC but that was my ways of resolving the issues.
For your asking, I,ve also implementeed some of my routine by changing the page call to a form call. Thus instead of this
Set browser = Aliases.browser
Set page = browser.Page("*")
I use this:
[some code line hier]
Dim form
Set form = Aliases.browser.{nameOfTheApplicationPage}.formAspnetform
Set myObjectToFind = form.FindChild("IdStr",...
[some code line hier]
So the purpose is to get the form representing the page and then I can look for the DropdownListBox object on wich I could call the ClickItem method..
Try it and let us know if this worked fined for yo or not... Otherwise other Community members could try to pop out some other stuff or redirect both of us to another solution
Regards,