public void AssertElementDoesNotExistWithJquery(string id) { AssertThatElements.DoNotExist(Seleno.PageObjects.Locators.By.jQuery(string.Format("#{0}", id))); }
public FormWithAJAXPage AssertThatTargetElementDoesNotExist() { AssertThatElements.DoNotExist(By.jQuery("#target")); return(this); }
public void AssertElementDoesNotExist(string id) { AssertThatElements.DoNotExist(By.Id(id)); }