Middle
How to get a new version of an application for testing?
sobes.tech AI
Answer from AI
To obtain a new version of the application for testing, you typically need to:
- Contact the development team or release managers responsible for building and releasing new versions.
- Get the build from the continuous integration (CI) system, where artifacts are automatically assembled and uploaded.
- Use internal repositories or portals to download test builds.
- If necessary, request access to test environments or beta versions through special channels (e.g., TestFlight for iOS, Google Play Console for Android).
In test automation, you can set up integration with CI/CD to automatically receive and deploy new versions for testing.
Example: if Jenkins is used, you can configure a task that downloads the latest artifact and deploys it to the test environment.