Beispiel #1
0
 /// <summary>
 /// <para>Check if this element becomes missing within the <see cref="SessionConfiguration.Timeout"/></para>
 /// </summary>
 /// <param name="options">
 /// <para>Override the way Coypu is configured to find elements for this call only.</para>
 /// <para>E.g. A longer wait:</para>
 ///
 /// <code>new Options{Timeout = TimeSpan.FromSeconds(60)}</code></param>
 public override bool Missing(Options options = null)
 {
     if (_element != null)
     {
         return(_element.Missing(options));
     }
     return(Try(new ElementMissingQuery(_element, Merge(options))));
 }
Beispiel #2
0
 public bool HasNo(ElementScope findElement)
 {
     return(findElement.Missing());
 }