Having supported multiple ISO 26262 certifications using Polarion, I’ll share a comprehensive framework that addresses all the key elements you’ve mentioned.
Test Execution Evidence - Holistic Approach
The foundation is treating every test execution as an evidence package rather than just a result record. Each package must contain five core elements:
1. Automated Screenshot Capture Strategy
Implement screenshot automation at three levels:
- Pre-execution: Capture initial state before test begins
- Step-level: Screenshot after each significant test step
- Post-execution: Final state capture including any error conditions
Integrate screenshot capture directly into your test automation framework. Tag each image with execution context (test case ID, step number, timestamp, environment ID). Store screenshots as attachments to the test run work item with standardized naming conventions that audit report widgets can parse.
2. Environment Tracking Framework
Create a structured environment snapshot that captures:
- Software under test (version, build number, configuration)
- Test tools and frameworks (versions, plugins, drivers)
- Hardware configuration (if applicable for embedded systems)
- Network topology and dependencies
- Operating system and runtime environment details
Implement this as a custom work item type with fields matching ISO 26262’s traceability requirements. Link environment snapshots to test runs using a “executed-in” relationship. This creates auditable traceability from requirements through test cases to actual execution environment.
3. Comprehensive Audit Report Widgets
Develop specialized widgets for different audit scenarios:
Widget 1: Safety Requirement Coverage
Shows all test executions for a specific safety requirement, including execution timestamps, environments, results, and evidence artifacts. Filters by ASIL level and test phase.
Widget 2: Test Execution Timeline
Visualizes test execution history over time with environment changes highlighted. Helps auditors understand testing progression and identify any gaps.
Widget 3: Evidence Completeness Matrix
Displays which test runs have complete evidence packages (screenshots, logs, environment data) versus incomplete ones. Critical for identifying audit trail gaps before formal review.
Widget 4: Traceability Verification
Validates that every test execution has proper links to test cases, requirements, and environment snapshots. Highlights broken traceability chains.
4. ISO 26262 Specific Considerations
For ASIL C and D level requirements:
- Implement redundant evidence capture (primary and backup)
- Add electronic signatures for test execution approval
- Include deviation tracking when tests don’t execute as planned
- Capture tool qualification evidence when using automated test tools
5. Practical Implementation Pattern
Integrate evidence collection into your CI/CD pipeline:
- Test execution begins → Capture environment snapshot
- Each test step → Screenshot + detailed log entry
- Test completes → Package all evidence and attach to test run
- Automated validation → Check evidence completeness
- Audit report generation → Pull complete evidence chain
Storage and Performance Optimization
For repository performance with extensive evidence:
- Use external storage for large artifacts (videos, extensive logs)
- Keep metadata and thumbnails in Polarion for quick access
- Implement retention policies (archive old evidence after certification)
- Use lazy loading in audit widgets to handle large datasets
Audit Report Best Practices
Design reports that answer auditor questions directly:
- “Show complete evidence for requirement X”
- “Prove all ASIL D tests executed in qualified environments”
- “Demonstrate traceability from requirement through execution”
- “Verify no evidence gaps exist for safety-critical features”
The combination of automated screenshot capture, structured environment tracking, and purpose-built audit report widgets creates a defensible audit trail that satisfies ISO 26262 requirements while remaining manageable for your test team. The key is automation - manual evidence collection doesn’t scale and introduces gaps that auditors will flag.