public void selectNameSpace(String nameSpace) { JTabbedPaneFixture combinedVarPanelTabbedPane = focusedWindow.tabbedPane("CombinedVarPanel"); combinedVarPanelTabbedPane.selectTab("Name Space"); JTreeFixture tree = focusedWindow.tree(); tree.doubleClickPath(nameSpace); }
private static JTreeNodeFixture getTreeNode(FrameFixture rootWindow, String path) { JTreeFixture tree = WorkspaceUtils.getNavigatorPanel(rootWindow).tree(); waitForProjectToLoad(); tree.expandPath(path); return tree.node(getRequestPath()); }