I running locally a Maven/Selenium/Java/TestNG test project for a bit, and I wish I could push it to Docker/Kube so that it will be executed remotely, without using my machine's power and also in order to be able to be used "without" me.
My concern is that every time I look for examples or documentation about it, I can only find explanation about running the driver interactions remotely using Selenium Grid or similar. But never about running the test code by itself remotely. Any tutorials or examples about it?
I plan on using Browserstack (or a similar solution with remote driver) for driver interactions, and I already run a local Allure server for reporting, so I only need to containerise the test code, and I wonder if anyone of you has already done it and how. Any suggestion is welcome :)