import org.netbeans.jellytools.*; import org.netbeans.jellytools.nodes.*; public class TestPopupOnTreeTable { /** Creates a new instance of TestPopupOnTree */ public TestPopupOnTreeTable() { } /** * @param args the command line arguments */ public static void main(String[] args) { OptionsOperator options = OptionsOperator.invoke(); String testNodePath = "IDE Configuration|Look and Feel|Menu Bar|Ve&rsioning"; Node testNode = new Node(options.treeTable().tree(), testNodePath); testNode.performPopupAction("Add|Separator"); } }