-
Run the following command to start the Selenium standalone Chrome container:
docker run -d -p 4444:4444 -p 7900:7900 --shm-size="2g" selenium/standalone-chrome:134.0.6998.165-20250525Note: For Mac, add
--platform linux/x86_64:docker run --platform linux/x86_64 -d -p 4444:4444 -p 7900:7900 --shm-size="2g" selenium/standalone-chrome:134.0.6998.165-20250525 -
Execute the tests using CodeceptJS:
npx codeceptjs run
- The issue occurs with
codeceptjsversion3.7.3. - It works correctly with
codeceptjsversion3.6.9.