ContributionsMost RecentMost LikesSolutionsRe: Global Name Mapping r_ahmakovWe are sharing a name mapping file across 4projects and it works well. If you find objects in differing object hierarchies then you will need to use Extended Find. We have less than 10 situations where this is needed. Re: DevOps AlexKaras Good feedback. I can't find anything you've said to argue with - especially the view company'shave towards generalizations; testing, dev, support. I've found silos at every company I've worked. And there's a reason. The software is generally so complex that everyone can't know everything. I spoke with a recruiter recently and got the impression he was guiding me in the DevOpsdirection because he has a client with a vacancy which uses some of the DevOps buzzwords. Tests Not Started in Project Suite Log Where can the list of tests 'not started tests' which appear in the Project Suite Log? Re: DevOps mgroen2 wrote: william_roeYes, I am involved in an organization which incorporates CI/ CD/ Agile and Devops practises. And I also think TestComplete needs to be upgraded to better fullfill Devops requirements. See some of my recent Feature requests Why? I had spoken with someone yesterday who mentioned DevOps and I hadn't heard much about it. The company I'm currently working for lacks the commitment to do more thanpurchased a few token TC and TE licenses and a single server so I doubt I can convince them to move in the direction of DevOps. OpenFile From Keyword Test I can't figure out how to use the FileOpen dialog in a keyword test.In the screen captures below 'VDTBrowser' is mapped to the 'Browse' button and opens the FileOpen dialog. FileUcparseconfigfileTextbox01np fails with "...window is disabled". If the dlgOpen.OpenFile is called without the the previous two lines I'm getting object does not exist. I'm sure it's simple but I'm not seeing it. I've tried in script as well. The upload control is DevExpress v15 @Html.DevExpress().UploadControl(s => { s.Name = "ucParseConfigFile"; s.CallbackRouteValues = new { Controller = "Opportunity", Action = "FileImport" }; s.AutoStartUpload = true; s.ValidationSettings.Assign(CribMaster.Web.Base.Util.Helper.UploadControlHelper.ExcelValidationSettings); s.ClientSideEvents.FilesUploadStart = "function (s,e) { ShowLoading(); }"; s.ClientSideEvents.FileUploadComplete = "ExcelFileUploadCompleted"; //s.ClientSideEvents.TextChanged = "function(s, e) { ucParseConfigFile.Upload(); }"; s.ShowClearFileSelectionButton = false; s.Enabled = (Model.UsageType != null) ? true : false; }).GetHtml() Re: Open File From Stores william_roe wrote: AlexKaras wrote: Hi William, Not sure I got the problem... Isn't Files.FileNameByName() what you are looking for? That's it EXACTLY. Thank you. AlexKaras Anytime arrived sooner than expected.I can't figure out how to use the FileOpen dialog in a keyword test.In the screen captures below 'VDTBrowser is mapped to the 'Browse' button and opens the FileOpen dialog. FileUcparseconfigfileTextbox01np fails with "...window is disabled". If the dlgOpen.OpenFile is called without the the previous two lines I'm getting object does not exist. I'm sure it's simple but I'm not seeing it. The upload control is DevExpress v15 @Html.DevExpress().UploadControl(s => { s.Name = "ucParseConfigFile"; s.CallbackRouteValues = new { Controller = "Opportunity", Action = "FileImport" }; s.AutoStartUpload = true; s.ValidationSettings.Assign(CribMaster.Web.Base.Util.Helper.UploadControlHelper.ExcelValidationSettings); s.ClientSideEvents.FilesUploadStart = "function (s,e) { ShowLoading(); }"; s.ClientSideEvents.FileUploadComplete = "ExcelFileUploadCompleted"; //s.ClientSideEvents.TextChanged = "function(s, e) { ucParseConfigFile.Upload(); }"; s.ShowClearFileSelectionButton = false; s.Enabled = (Model.UsageType != null) ? true : false; }).GetHtml() DevOps Anyone out there practicing DevOps? Re: Open File From Stores AlexKaras wrote: Hi William, Not sure I got the problem... Isn't Files.FileNameByName() what you are looking for? That's it EXACTLY. Thank you. Re: Open File From Stores That's a bummer. Thanks for the reply. Open File From Stores I understand how to use OpenFilebut how do you open a file from the Stores? Solved