How do you handle not element selectable exception in Selenium?
Selenium WebDriver throws ElementNotSelectableException when its not able to select the element eventhough the element present in web page .User wait element with condition “elementToBeClickable”
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10)); wait.Until(ExpectedConditions. elementToBeClickable();
1 Like