We are automating Silver Light Application
We have to get Collection of Elements from a Table.
There are 500 Elements.
20 elements are available in Screen display. Others are not in screen display, but available in the Application.
I want to get the 499th Element which is not visible in screen display. Unable to get the Element. Throwing Exception.
//Working
Ranorex.Table tblSupplier = pilstMainTabPage[0].FindSingle<Ranorex.Table>("<RxPath Of the Table>");
//The Below code is working if the Element is available in Screen display
//The Below code is NOT working if the Element is NOT available in the Screen display
Ranorex.Text txtSupplierHdr = tblSupplier.FindSingle<Ranorex.Text>(".//text[@name='12345']");
How to get Hidden object? (Its Type is Ranorex.Core.Element)