We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e1c405 commit b78cf1bCopy full SHA for b78cf1b
dotnet/src/support/Events/EventFiringWebDriver.cs
@@ -1582,6 +1582,15 @@ public override bool Equals(object obj)
1582
1583
return underlyingElement.Equals(other);
1584
}
1585
+
1586
+ /// <summary>
1587
+ /// Return the hash code for this <see cref="EventFiringWebElement"/>.
1588
+ /// </summary>
1589
+ /// <returns>A 32-bit signed integer hash code.</returns>
1590
+ public override int GetHashCode()
1591
+ {
1592
+ return this.underlyingElement.GetHashCode();
1593
+ }
1594
1595
1596
0 commit comments