Skip to content

Commit 137eecb

Browse files
committed
Remove not-actually-public strings
1 parent f3c253e commit 137eecb

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

dotnet/src/webdriver/WebDriverError.cs

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
// under the License.
1818
// </copyright>
1919

20-
using System;
2120
using System.Collections.Generic;
2221

2322
namespace OpenQA.Selenium
@@ -168,30 +167,6 @@ internal static class WebDriverError
168167
/// </summary>
169168
public const string UnsupportedOperation = "unsupported operation";
170169

171-
/// <summary>
172-
/// Represents the element not selectable error.
173-
/// </summary>
174-
[Obsolete("This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors")]
175-
public const string ElementNotSelectable = "element not selectable";
176-
177-
/// <summary>
178-
/// Represents the element not visible error.
179-
/// </summary>
180-
[Obsolete("This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors")]
181-
public const string ElementNotVisible = "element not visible";
182-
183-
/// <summary>
184-
/// Represents the invalid coordinates error.
185-
/// </summary>
186-
[Obsolete("This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors")]
187-
public const string InvalidCoordinates = "invalid coordinates";
188-
189-
/// <summary>
190-
/// Represents the invalid element coordinates error.
191-
/// </summary>
192-
[Obsolete("This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors")]
193-
public const string InvalidElementCoordinates = "invalid element coordinates";
194-
195170
private static readonly Dictionary<string, WebDriverResult> resultMap;
196171

197172
static WebDriverError()

0 commit comments

Comments
 (0)