Содержание

Selenoid

Selenium, упакованный в Docker. Документация.

Решение проблем

org.openqa.selenium.NoSuchSessionException: invalid session id

Большинство тестов завершаются неуспешно. Браузеру Chrome не хватает памяти. Дело в том, что Chrome использует /dev/shm, а размер shm в Докере по умолчанию - 64 МБ.

Chrome uses /dev/shm for runtime data which is 64MB by default under Docker. If this is > not sufficient then this can cause Chrome to crash.
Possible workarounds:

В моём случае я применил docker run --shm-size=512m

https://stackoverflow.com/questions/57340315/org-openqa-selenium-nosuchsessionexception-invalid-session-id-message-this-ver