Complete the code to define a use case test scenario name.
use_case_name = "[1]"
The use case test scenario should clearly describe the user action, such as "Login with valid credentials".
Complete the code to add a step description in the use case test.
test_steps = ["[1]"]
The test step should describe the user action, such as entering username and password.
Fix the error in the test case status assignment.
test_status = "[1]"
The correct status value is usually 'passed' to indicate the test succeeded.
Fill both blanks to create a dictionary for a use case test step with description and expected result.
test_step = {"description": "[1]", "expected_result": "[2]"}The description should state the user action, and the expected result should describe the successful outcome.
Fill all three blanks to define a use case test dictionary with name, steps, and status.
use_case_test = {"name": "[1]", "steps": ["[2]"], "status": "[3]"}The name describes the use case, steps list the user actions, and status shows if the test passed.