FEST Swing new frame on click, can't make new frame fixture
I am trying to write a Fest Swing test but am having trouble making / finding a frame fixture. I have two JFrames, one opens the other on click, and I'd like to either: 1.) find the frame fixture of the new JFrame opened 2.) make a new frame fixture out of the the new JFrame object created (I can get the object from the original JFrame Object.) I have tried using GenericTypeMatcher<secondGUI> matcher = new GenericTypeMatcher<secondGUI>(secondGUI.class) { protected boolean isMatching(secondGUI frame) { System.out.println("0".equals(frame.getTitle()) && frame.isShowing()); return "0".equals