Verify local storage operations on a web page
Preconditions (4)
Step 1: Open the web page at 'http://localhost:3000/storage-test'
Step 2: Click the button with id 'save-btn' to save the key 'username' with value 'tester' to local storage
Step 3: Verify that the element with id 'storage-value' displays 'tester'
Step 4: Refresh the page
Step 5: Verify that the element with id 'storage-value' still displays 'tester'
Step 6: Click the button with id 'clear-btn' to clear local storage
Step 7: Verify that the element with id 'storage-value' is empty or displays 'No data'
✅ Expected Result: The local storage key 'username' is saved and displayed correctly, persists after refresh, and is cleared when requested.