//myFrame.setVisible(true);
try {
while (parser.name().equals("testgroup")) {
String[] choices = parser.textChildren("choice");
int randChoice = new java.util.Random().nextInt(choices.length);
File f = parser.pathToFile(choices[randChoice]);
parser = new ExtendedElement(f.toURL().toURI().toString());
}
Test test;