sankar_k
11 years agoOccasional Contributor
FindAllChildren finds a particular object, but unable to navigate to them
Hi There I am trying to find objects in a .NET 4.5 client server application developed using Infragistic controls. I am trying to find a control as follows ObjectName = "txtBudgetID_Embe...
- 11 years agoHi Sankar,
If you add the following script to your code, will the click be performed:
//JScript
TBoxBudget = (new VBArray(TBoxBudget )).toArray();
if (TBoxBudget.length > 0)
{
for (k = 0; k < TBoxBudget.length; k++)
TBoxBudget.Click()
}