public override bool Run() { try { DriverScope.FindElement(); return(true); } catch (MissingHtmlException) { return(false); } }
public override bool Run() { return(DriverScope.FindElement().Value == text); }
public override bool Run() { return(!DriverScope.FindElement().Text.Contains(text)); }
public override ElementFound Run() { return(DriverScope.FindElement()); }
public override bool Run() { return(text.IsMatch(DriverScope.FindElement().Text)); }