ContributionsMost RecentMost LikesSolutionsRe: testFiltercriteria not applied Chandrika_nag1I tried adding version # in "TestComplete test adapter installer" task but it still installs the faulty one. - task: InstallTestCompleteAdapter@1 displayName: "Installing Test Complete Test Adapter" inputs: accessKey: 'd74f4d38-7eb6-459c-aa55-b1e318980316' version: '1.15069.139' Re: testFiltercriteria not applied AS per test complete documentation which I am referring is using ~ is correct to filter the groups.Run TestComplete Tests as Part of a Pipeline | TestComplete Documentation Until yesterday the same filter expression was working as expected. testFiltercriteria not applied Until yesterday test was running fine with the below highlighted test criteria in azure pipeline. After Updating the test agent test are not getting filtered from the execution plan. Execution plan looks like below. From which I am trying to run Menu5_US and its child test items. But the other groups also getting executed. Until yesterday only the specified group in the testFiltercriteria was getting executed in azure pipeline. SolvedThere was an attempt to perform an action at a point, which is beyond the screen. I am testing windows desktop application and trying to click the button. TC is unable to identify the button object and throwing this error. Re: TypeError: OkDialog.clickOk is not a function it just typo I renamed the object to okButton and onClick event is expected after clicking "ClickButton" TypeError: OkDialog.clickOk is not a function Today i got a weird error message as TypeError: OkDialog.clickOk is not a function when execution running. Have anyone got this kind of error. My function looks like below function OkCancelDialog_ClickOk() { this.oKButton.ClickButton(); } Scripting Language : JavaScript shankar_r