How are you balancing manual vs automated testing in your projects?

Aleksandar Boranijasevic
3 replies

Replies

Kacper Kielak
Frontend - manual, UI is too hard to test and changes too frequently Backend - automated end-to-end tests for most of the API calls, unit tests for functions with complex logic (e.g., mathsy stuff) or anything authorization/authentication related
Aleksandar Boranijasevic
@kackiel Thank you for sharing your thoughts.I agree with you,it seems like manual testing will remain integral part of QA process.However ,automation of test that were previously executed and verified can save a lot of time on regression runs and therefore free up human resources on the project.Do you have any experience with using some low code or no code automation tools on the project and which ones?Thanks