You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dotnet/src/webdriver/IWebElement.cs
+2
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
// limitations under the License.
17
17
// </copyright>
18
18
19
+
usingSystem;
19
20
usingSystem.Drawing;
20
21
21
22
namespaceOpenQA.Selenium
@@ -170,6 +171,7 @@ public interface IWebElement : ISearchContext
170
171
/// </list>
171
172
/// </remarks>
172
173
/// <exception cref="StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
174
+
[Obsolete("Use GetDomAttribute(string attributeName) or GetDomProperty(string propertyName). GetAttribute(string attributeName) will be removed in Selenium 6.")]
0 commit comments