Пример #1
0
 /// <summary>
 ///   Compares if two JQueryTags have the same tag and webElement
 /// </summary>
 /// <returns> true if the JQueryTags match </returns>
 public bool Equals(JQueryTag comparer)
 {
     if ((this.TagName.Equals(comparer.TagName)) && (this.WebElement.Equals(comparer.WebElement)))
     {
         return(true);
     }
     return(false);
 }
Пример #2
0
 /// <summary>
 ///   Compares if two JQueryTags have the same tag and webElement
 /// </summary>
 /// <returns> true if the JQueryTags match </returns>
 public bool Equals(JQueryTag comparer)
 {
     if ((this.TagName.Equals(comparer.TagName)) && (this.WebElement.Equals(comparer.WebElement)))
         return true;
     return false;
 }