{{brand_name}}

AI Generated Functional Tests

{% if app_name != "APP" %}
{% if app_icon_url %}
{{app_name}} Icon

{{app_name}}

{% else %}

{{app_name}}

{% endif %}
{% endif %}
Total Tests: {{ total_tests }}
{% for area_name, test_cases in ai_tests.items %} {% if test_cases %}
{% if area_name == 'edge' %} {% with 'samantha' as agent_name %} {{ agent_name }}

Edge Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'interesting' %} {% with 'zara' as agent_name %} {{ agent_name }}

Interesting Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'ai_unique' %} {% with 'richard' as agent_name %} {{ agent_name }}

AI Unique Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'basic' %} {% with 'ravi' as agent_name %} {{ agent_name }}

Basic Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'long_flow' %} {% with 'jason' as agent_name %} {{ agent_name }}

Long Flow Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'search' %} {% with 'jason' as agent_name %} {{ agent_name }}

Search Cases ({{ test_cases|length }})

{% endwith %} {% elif area_name == 'forms' %} {% with 'carlos' as agent_name %} {{ agent_name }}

Forms Cases ({{ test_cases|length }})

{% endwith %} {% else %} {% with 'aiden' as agent_name %} {{ agent_name }}

{{ area_name|title }} Cases ({{ test_cases|length }})

{% endwith %} {% endif %}
{% for test_case in test_cases %}

{{ test_case.title }}

{{ test_case.overall_description }}

{{ test_case.test_description }}

Test Details
{% if test_case.id %}
Test ID {{ test_case.id }}
{% endif %} {% if test_case.title %}
Test Name {{ test_case.title }}
{% endif %} {% if test_case.validation_conditions %}
Validation Conditions {{ test_case.validation_conditions }}
{% endif %} {% if test_case.test_steps %}
Test Steps {{ test_case.test_steps }}
{% endif %} {% if test_case.priority_reason %}
Priority Reason {{ test_case.priority_reason }}
{% endif %} {% if test_case.if_fails_why_fix %}
If Fails Why Fix {{ test_case.if_fails_why_fix }}
{% endif %} {% if test_case.probable_impact %}
Probable Impact {{ test_case.probable_impact }}
{% endif %} {% if test_case.probable_cause %}
Probable Cause {{ test_case.probable_cause }}
{% endif %} {% if test_case.route_to_engineer %}
Route to Engineer {{ test_case.route_to_engineer }}
{% endif %} {% if test_case.data.expected_test_input_parameters and test_case.data.expected_test_input_parameters|length > 0 %}
Expected Test Input Parameters
{% for param in test_case.data.expected_test_input_parameters %}
{{ param.name }}: {{ param.value }}
{% if param.reason %}
Reason: {{ param.reason }}
{% endif %}
{% endfor %}
{% endif %} {% if test_case.data.expected_results and test_case.data.expected_results|length > 0 %}
Expected Results
{% for result in test_case.data.expected_results %}
{{ result.name }}: {{ result.value }}
{% if result.reason %}
Reason: {{ result.reason }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endfor %} {% if ai_tests.items|length == 0 %}

No test data available.

{% endif %}