Codeception / Codeception/module-webdriver

Error: Element <...> could not be scrolled into view

Open
#97 5 comments 0 reactions 0 assignees View on GitHub
Dominant language
PHP
Stars
39
Forks
25
PR merge metrics
No merged PRs in 30d

Description

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:
```php
$I->scrollTo('someNearbyElement');
$I->wait(0.5); // Some arbitrary number. I tried with `$I->waitForElementClickable()` but it isn't working :-(
$I->click(...);
```

geckodriver 0.30.0 with Firefox 99.0

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.