Is there a way to get around the elementNotInteractable exception in selenium? I've used
wait.until(ec.element_to_be_clickable())
But my code will still try to interact with elements before they're fully interactable. Is the problem that I just haven't set the delay high enough when defining wait? Or is there a function like
ec.element_to_be_interactable()
which checks if the element is interactable or not?