InterviewSolution
| 1. |
What are the recommended ways to handle change in requirements during the middle of the sprint? |
|
Answer» This is a very common scenario seen in the projects which are using Scrum Approach. The team should always be prepared for that. But try to have a GOOD conversation with the Product owner to not include in the current sprint and deferred to the next sprint. Changes in requirements sometimes taken as FEEDBACK from the customer so that the product can be improved. We should be ready to embrace this change. As a tester, they should TAKE the generic approach by writing the generic test cases (Login screen, user credentials). Till the requirements are stable, try to wait if you are planning to automate the test cases. As a developer, the same approach can be used where chances of changes are minimal. Try to code using design patterns and oops concepts (Components or PACKAGE independent of each other), so that change in ONE component makes minimal changes in another. |
|