ContributionsMost RecentMost LikesSolutionsRe: How to obtain needed link in Web table controlThe solution is following: for (var i=0; i<RFx_table.RowCount; i++ ) // loop through column in table { var str = aqString.Trim(RFx_table.Cell(i,1).innerText, aqString.stTrailing) // read the text in the cell using innerText property. Use Trim method to remove space at the end of text, innerText property adds space for some reason if (str == "test5") RFx_table.Cell(i,1).Link(0).Click(); }Re: Can't obtain web table using the FindChild methodIt is work using page.Find method and NativeWebObject.id propertyCan't obtain web table using the FindChild methodHi - This works: var iexplore; var page; iexplore = Sys.Process("iexplore", 2); iexplore.ToUrl("http://..."); page = iexplore.Page("http://..."); page.Form("form1").Panel(2).Panel(0).Panel(0).Panel(0).Panel(0).Panel(0).Panel(0).Table(0).Cell(0, 0).Table(0).Cell(1, 0).Panel(0).Panel(0).Panel(0).Table(0).Cell(0, 0).Table(0).Cell(2, 0).Table(0).Cell(0, 0).Panel("MainBodyPlaceholder_MainBodyPlaceholder_RFX_MyFRXPanel").Table("MainBodyPlaceholder_MainBodyPlaceholder_RFX_myRFxGrid").Cell(0, 0).Table("MainBodyPlaceholder_MainBodyPlaceholder_RFX_myRFxGrid_DXMainTable").Cell(3, 1).Link(0).Click(); page.Wait(); This doesn't(table object doesn't found): var page; iexplore = Sys.Process("iexplore", 2); iexplore.ToUrl("http://..."); page = iexplore.Page("http://..."); var PropArray = new Array("Name", "VisibleOnScreen"); var ValuesArray = new Array("*RFX_myRFxGrid_DXMainTable*", true); var RFx_table = page.FindChild(PropArray, ValuesArray,1000); RFx_table.Cell(3,1).Link(0).Click(); Why? Thx a lot Re: Object Identification: with level of authorities.Hi Alex, I'm using TC8 and can't find contentText property. See attach Thx Re: Object Identification: with level of authorities.Hi Alex, I'm using TC8 and can't find contentText property. See attach Thx How to obtain needed link in Web table controlHi - To obtain any objects in my scripts i use the 'FindChild' method. Therefore i need some unique property of this object. In my current case i have to click on specified link that located within some cell of the web table. How to achieve that? That is full path to the link: Sys.Process("iexplore", 2).Page("http://").Form() ... ...Table("MainBodyPlaceholder_MainBodyPlaceholder_RFX_myRFxGrid_DXMainTable").Cell(2, 1).Link(0). I can't use this since row index in the Cell can be different from time to time. I have only link name as defined property. And table column is always the same, but row can change every run. Maybe loop through the column to find needed cell but how to attain this knowing only link name? Thank you!