Hi,
There is a control of type container and it has sub elements of type text. i want to read the text value of each text in the container. How can i do this.
i tried using the following code but dose not work for me
Ranorex.Container IV_Add = <XPath of Container>
Element[] invadd=IV_Add.FindChildren(Role.Text);
for(int i=0; i<=invadd.Length; i=i+1)
{
Console.WriteLine(invadd[i].GetAttributeValue("Text"));
}
Thanks
Kiran pol