Complete the code to start an exploratory testing session by setting the session time.
session_time = [1] # time in minutes for exploratory testing
The typical exploratory testing session is often set to 60 minutes to allow focused but manageable testing.
Complete the code to log notes during an exploratory testing session.
notes = [] notes.[1]('Found a UI glitch on login screen')
Use append to add new notes to the list during testing.
Fix the error in the code that checks if a bug report is empty during exploratory testing.
if len(bug_report) [1] 0: print('Bug report is empty')
= instead of comparison ==.The comparison operator == checks if the length is zero. Using = causes a syntax error.
Fill both blanks to filter exploratory test notes that contain the word 'error' and convert them to uppercase.
filtered_notes = [note.[1]() for note in notes if 'error' [2] note]
lower() instead of upper().not in which filters out notes with 'error'.Use upper() to convert notes to uppercase and in to check if 'error' is in the note.
Fill all four blanks to create a dictionary summarizing bug counts by severity from exploratory testing results.
bug_summary = {severity: [1] for severity, bugs in bug_data.items() if [2] > 0}Use curly braces {} to create a dictionary. The key is severity, and the value is the count of bugs using len(bugs). Filter only severities with more than zero bugs.