public void AssertElementContainsValueWithJquery(string id, string value)
 {
     AssertThatElements.ConformTo(
         Seleno.PageObjects.Locators.By.jQuery(string.Format("#{0}", id)),
         es => ThrowIfElementDoesNotContainValue(value, es));
 }
 public void AssertElementContainsValue(string id, string value)
 {
     AssertThatElements.ConformTo(By.Id(id), es => ThrowIfElementDoesNotContainValue(value, es));
 }