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
I'm "suddenly" getting this in many tests in Firefox (haven't tried with Chrome yet):
[Facebook\WebDriver\Exception\ElementNotInteractableException] Element <...> could not be scrolled into view
Is anybody else observing this?
My current workaround: What used to be just $I->click(...); is now:
$I->scrollTo('someNearbyElement');
$I->wait(0.5); // Some arbitrary number. I tried with `$I->waitForElementClickable()` but it isn't working :-($I->click(...);