Verify membership of elements in a list using 'in' and 'not in'
Preconditions (2)
Step 1: Create a list named 'fruits' containing ['apple', 'banana', 'cherry']
Step 2: Check if 'banana' is in the list 'fruits'
Step 3: Check if 'orange' is not in the list 'fruits'
Step 4: Assert that 'banana' is found in the list
Step 5: Assert that 'orange' is not found in the list
✅ Expected Result: The test passes confirming 'banana' is in the list and 'orange' is not in the list