$(By.name("rememberMe")).shouldNotBe(selected);
}
@Test
public void userCanUseOrCondition() {
Condition one_of_conditions = or("baskerville", text("Basker"), text("Walle"));
$("#baskerville").shouldBe(one_of_conditions);
Condition all_of_conditions = or("baskerville", text("Basker"), text("rville"));
$("#baskerville").shouldBe(all_of_conditions);
Condition none_of_conditions = or("baskerville", text("pasker"), text("wille"));
$("#baskerville").shouldNotBe(none_of_conditions);
}