ContributionsMost RecentMost LikesSolutionsRe: Warning in distributedTest log here is the content of Child Link : Re: Warning in distributedTest log hi , there are two screenshot of log witch are warning. we can see as my colleague said, the two childs are OK , but this parents log return warning Re: Code analysis Via TestComplete actually I am looking for a tool like this that can be integrated into TC or can then be easily launched alongside your solution looks good on the site but actually for a systematic launch it's more complicated Re: Code analysis Via TestComplete Hello, I was thinking of an analyzer in the visual studio genre. More advanced than TestComplete. I would like to go much further than explorer code. instead of having long functions it is more interesting to have cyclomatic complexity. Have the variables that are not used. Being able to add our own rules ourselves Code analysis Via TestComplete Hello, I'm looking for a way to integrate a code analysis under Test Complete. Is there a plugin or external software able to interact with the code developed under TC SolvedRe: Unable to load property of a component I based myself on the text property that works well to get around the problem, but I wanted to understand why the formatedtext does not work. In the end the focus of the component already present at the time of the search for the component block this update. Thank you Re: Unable to load property of a component Why doesn't use my property FormatedText ? This property is a property created by me even in WPF is so I prefer to rely on it Re: Unable to load property of a component Sorry, wanting to remove some comment I removed some of the code function GetTextWPF(oComponent) { var oRet=""; oRet=oComponent.FormattedText; //BuiltIn.ShowMessage(aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll)); //oComponent.Refresh() // BuiltIn.ShowMessage(aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll)); if(typeof oRet=='object') return aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll); else return aqString.Trim(oComponent.FormattedText,aqString.stAll); } Re: Unable to load property of a component The code is quite simple, and by deepening the simple fact of inserting a dialog by writing the search value allows me to find it, as when I evaluated it but without it the code does not work function GetTextWPF(oComponent) { //BuiltIn.ShowMessage(aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll)); // BuiltIn.ShowMessage(aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll)); if(typeof oRet=='object') return aqString.Trim(oComponent.FormattedText.OleValue,aqString.stAll); else return aqString.Trim(oComponent.FormattedText,aqString.stAll); } Re: Unable to load property of a component I'm able to access the value of my component using the Text property, but I'd like to understand why I can not recover the value otherwise because I need to use the formatedText property for other constraint.