0
0
Testing Fundamentalstesting~10 mins

Bug report writing in Testing Fundamentals - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start a bug report with a clear title.

Testing Fundamentals
bug_report = {"title": "[1]", "description": "App crashes on login."}
Drag options to blanks, or click blank then click option'
ABug
BCrash
CApp crash on login
DError
Attempts:
3 left
💡 Hint
Common Mistakes
Using vague titles like 'Bug' or 'Error' which don't explain the issue.
2fill in blank
medium

Complete the code to add a severity level to the bug report.

Testing Fundamentals
bug_report = {"title": "App crash on login", "severity": "[1]"}
Drag options to blanks, or click blank then click option'
Alow
Bhigh
Cmedium
Dminor
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'low' or 'minor' which understate the problem's impact.
3fill in blank
hard

Fix the error in the bug report by completing the steps to reproduce field correctly.

Testing Fundamentals
bug_report = {"title": "App crash on login", "steps_to_reproduce": [1]
Drag options to blanks, or click blank then click option'
A"Open app, enter username, click login"
B{Open app, Enter username, Click login}
COpen app, enter username, click login
D["Open app", "Enter username", "Click login"]
Attempts:
3 left
💡 Hint
Common Mistakes
Using a single string or wrong data structure for steps.
4fill in blank
hard

Fill both blanks to complete the bug report dictionary with expected and actual results.

Testing Fundamentals
bug_report = {"expected_result": "[1]", "actual_result": "[2]"}
Drag options to blanks, or click blank then click option'
AUser logs in successfully
BApp crashes with error message
CLogin page reloads
DBlank screen
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up expected and actual results.
5fill in blank
hard

Fill all three blanks to complete the bug report with environment, status, and assigned_to fields.

Testing Fundamentals
bug_report = {"environment": "[1]", "status": "[2]", "assigned_to": "[3]"}
Drag options to blanks, or click blank then click option'
AWindows 11
BOpen
CQA Team
DLinux
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing environment with status or assigned_to.