Forum Discussion
rraghvani
Champion Level 3
4 months agoWhen you click on the object, does another UI appear, similar to a drop down combo box?
Drop down showing items Blue and Green
hina
4 months agoContributor
Hi rraghvani,
Thank you for your reply. Below is my UI:
I am trying to click "TestComplete Work Area 1", that's when I see the error I reported. When I click "TestComplete Work Area 1", the Dataset list on right side shows up.
- rraghvani4 months ago
Champion Level 3
I'm assuming the Datasets is not populated until the Work Areas item is selected first? If that is the case, then you need to wait for the child item Datasets object to exist, before proceeding to the next step.
If you use the Object Browser, you should be able to see the behaviour of how your object is created.
I'm using Browser App as an example - you have the following item .Panel(6).Panel(0).Button("dropdownMenuButton") which represents the button 'Dropdown button'. However, the child item .Panel(6).Panel(0).Panel(0) does not exist yet (shown in red).When you click on the button 'Dropdown button', the child item .Panel(6).Panel(0).Panel(0) is then created (shown in blue). You can then access the object afterwards.Use the appropriate WaitNNN methods to wait for the child object to appear first.