"!|scenario|connect to |name|with password|password|\n" +
"|login with username|@name |and Password|@password |\n" +
"\n" +
"!|script|\n" +
"|connect to |Bob| with password| xyzzy|\n");
TableScanner ts = new HtmlTableScanner(root.getHtml());
ScenarioTable st1 = new ScenarioTable(ts.getTable(0), "s1_id", testContext);
ScenarioTable st2 = new ScenarioTable(ts.getTable(1), "s2_id", testContext);
script = new ScriptTable(ts.getTable(2), "id", testContext);
assertions.addAll(st1.getAssertions());
assertions.addAll(st2.getAssertions());
assertions.addAll(script.getAssertions());
List<CallInstruction> expectedInstructions =
asList(new CallInstruction("scriptTable_id_0/scriptTable_s2_id_0", "scriptTableActor", "loginWithUsernameAndPassword", new Object[]{"Bob", "xyzzy"}));