Think about your AUT. Is it possible for a user to see something on their screen that has been altered since the last time their screen refreshed? If so, you’re in luck. You can execute some stale data tests that may be fruitful.
Think of an item that can be edited. Let’s call it “ItemA”.
- UserA opens the UI, and sees ItemA.
- UserB opens the UI, and modifys ItemA. (now UserA is looking at a stale item.)
- UserA attempts to modify ItemA.
Expected Results: UserA is not able to modify the stale version of ItemA.
Read the full article