!747 m { !include #1000903 // SelectFinder p { S s = loadPage("http://tinybrain.de:8080/tb/snippets.php?action=list"); new SelectFinder f; f.go(s); S tag = f.select.get(1); print(tag); S name = htmlgetparams(tag).get("name"); if (name != "type") error("huch: " + tag); print(structure(f.options)); for (S[] o : f.options) { if (o[0].equals("")) continue; name = o[1].replaceAll(".*\\]", "").trim(); int id = parseInt(o[0]); print("Type found: " + "[" + id + "] " + name); } } }