ContributionsMost RecentMost LikesSolutionsRe: context menu strip - select by itemYes this is possible ...Are there any solutions in this case?Re: context menu strip - select by itemThis mentioned property value is System.Windows.Forms.ContextMenuStrip I hope this is the information you're searching for. Thanks, RicardoRe: context menu strip - select by itemHallo David, thanks for your help. This is an example like it works at the moment. Sub StripMenu() 'Clicks the '|Solution (stripMenu)|stripMenu|Basic' item of the 'ProjectOverviewTreeView' tree with the right mouse button. Call Aliases.nxtSTUDIO.DefaultWorkbench1.ToolStripContainer.ToolStripContentPanel.Panel.DockPanel.DockWindow2.DockPane.PadContentWrapper.Panel.ProjectOverviewTreeView.ClickItemR("|Solution (stripMenu)|stripMenu|Basic") 'Clicks at point (26, 17) of the 'ContextMenuStrip' object. Call Aliases.nxtSTUDIO.ContextMenuStrip.Click(26, 17) 'Moves the mouse cursor to the menu item specified and then simulates a single click. Call Aliases.nxtSTUDIO.DefaultWorkbench1.StripMainMenu.Click("File|New|Solution...") End Sub Statement 2 is a problem in our tests because it click by coordinates. If a developer adds a new Item to the Menu, I will have to adapt all the tests. What I'm searching for is a Method at the ContextStripMenu like in Statement 3, where I can choose the Item by a String. (There is no problem by selecting the mentioned context menu.) context menu strip - select by itemI'm using Testcomplete in Version 8.0.290.7 since a few days. I'm mainly using keyword tests to test our GUI. Therefore I have to simulate some clicks on context menus (concrete: clicks on context menu strips). If I record the test these clicks are recorded by the mousepointer position relative to the menu base point. I would like to record them by the item name instead (for example: "Rename" instead of "10, 33") because the simple position would lead to a lot of errors in the case that our developers change positions or add new items to these menus? Is this possible? regards, ricardo