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 aefe62e commit 8a6536dCopy full SHA for 8a6536d
dotnet/src/webdriver/Remote/RemoteWebDriver.cs
@@ -1381,11 +1381,11 @@ private static void UnpackAndThrowOnError(Response errorResponse)
1381
throw new StaleElementReferenceException(errorMessage);
1382
1383
case WebDriverResult.ElementNotDisplayed:
1384
+ case WebDriverResult.ElementNotInteractable:
1385
throw new ElementNotVisibleException(errorMessage);
1386
1387
case WebDriverResult.InvalidElementState:
1388
case WebDriverResult.ElementNotSelectable:
- case WebDriverResult.ElementNotInteractable:
1389
throw new InvalidElementStateException(errorMessage);
1390
1391
case WebDriverResult.UnhandledError:
0 commit comments