Elements nToManyWidgetElement = html.select("div.form-group > div.col-sm-10");
assertThat(nToManyWidgetElement, notNullValue());
Elements selectElement = nToManyWidgetElement.select(" > select");
assertThat(selectElement.attr("id"), equalTo(manyToManyProperty));
assertThat(selectElement.attr("multiple"), notNullValue());
assertThat(selectElement.attr("ng-model"), equalTo(manyToManyProperty+"Selection"));
String collectionElement = manyToManyProperty.substring(0, 1);
String optionsExpression = collectionElement +".text for "+ collectionElement +" in " + manyToManyProperty + "SelectionList";
assertThat(selectElement.attr("ng-options"), equalTo(optionsExpression));