ContributionsMost RecentMost LikesSolutionsRe: Can't take cell object from tableProblem is solved. I obtain object from the table on two steps - first I take a table using class name property and then look in the table for object: tablePersons = page.Find( new Array( "className" ), new Array( "table-property-persons" ), 100); if( tablePersons["Exists"]) { createBtn = tablePersons.Find( new Array("className"), new Array("js-add button add"),100); if( createBtn["Exists"]) { createBtn["Click"](); } } Re: Can't take cell object from tableToday I have same problem when try to take object submit button from cell of the table. When I execute FindChild variable return unexpandeble object in the watch list.Re: Can't take cell object from tableOn same page there is a few tables, but this innerTextin cell is unique for all tables. Now I see that is possible same innerText to present in the other table. How I can to differ one table from other?Can't take cell object from tableHello again, my problem today is with cell object from table. When I use follow script to take cell it return me in Watch list only [Object]: page = Aliases["iexplore"]; findFirstName = page.FindChild( new Array( "ColumnIndex", "ObjectType", "RowIndex", "innerText" ), new Array( "0", "Cell", "7", name ),100); I check for other objects with same parameters, but for this cell combinaion on parameters is absolutly unique and don't have any repetition. Also I do some tests with GetTable command as in Parsing HTML Tables chapter, but it return me exception when go on row with GetTable. Can you suggest me decision for this problem? Besr Regard Svetoslav Re: Regular expression in FindChild methodThank you, I arrive at a same conclusion when check parameters on main panel. Page was returned for redesign and I hope that next week all will be Ok.Re: Regular expression in FindChild methodI check it, but unfortunately it doesn't work. With \r\n it go on main panel in tested web-page and set for selectElement main panel on page, with only \n - nothing happened, selectElement in watch list return object, but without additional parameters (object is not expandble). Web-page is main panel with few childs - expandble panels. What happened if I create additional variable and there create expression with element and then use this variable in FindChild?Regular expression in FindChild methodHello, Todaty, my question is about correct syntax on regular expression in FindChild method. I have follow code part: selectElement = page.FindChild( new Array( "ObjectType", "innerText" ), new Array( "Panel", "*"+element+"$"+"*" ),100); where variable element is part of multi row string. I try to catch element and end row after it, but my current C#script code is wrong. Can help me? Best Regards, SvetoslavRe: How to call function from other fileThank you, I found it. For other people answer is: //USEUNIT Unit_Name How to call function from other fileHello, While I do automations with TCL, I move all my functions in the one or few files and just call them from there. In my test file I create just Main test function and using "source" command to decelerate path with my "function library" files. How I can to do it in TC8 using C# script? My problem is that now in every test file is mess of functions and many of this functions are used from more then one tests. Regards, Svetoslav Re: how to get the current url?Ok, I found it. My working script is: var newpage = Sys.Desktop.ActiveWindow(); var newpageUrl = newpage.Page("*").URL; var s; s = newpageUrl["split"]("\/"); for( i=0;i<s["length"]; i++) { if( s == "Property" && i < s["length"] - 1) { propertyId = s[i+1]; } }