I use the following docker image to run my cucumber tests:
https://hub.docker.com/r/selenium/standalone-chrome/
Unfortunately, starting from today it seems that whenever I run my tests I get the errors below. They appear at the start of each test. It does not matter what I do on the page.
**13:38:26 [exec] org.openqa.selenium.ElementNotInteractableException: element not interactable: element has zero size
13:38:26 [exec] (Session info: chrome=83.0.4103.61)**
I did some digging and I noticed the chromedriver version was updated from 81 to 83. I managed to fix this issue by using an older docker image from that docker hub link which has chromedriver 81. But if I attempt to use chromedriver 83 again it will not work.
Has anyone else encountered this? Is there a new chrome option I need to add because of the update?