I try to fix some old ruby app. But I have an issue with selenium tests. I debug gems and found out that test runners start the Google Chrome with that options:
path\to\chrome --headless --no-sandbox --remote-debugging-port=9222
then waits a moment and sends a get request to localhost:9222/json
.
When the test worked, the response to the above request was not empty, but now I got only [ ]
.
The tests are triggered in SemaphoreCI on ubuntu with the latest Google Chrome and Google Chrome driver. Any idea what may be wrong?