Web Interfaces
DevTools Dashboard
Real-time monitoring dashboard for OpenQA activity, tests, and bugs.
Access the Dashboard
bash
1# Start OpenQA2openqa start3 4# Open dashboard in browser5open http://localhost:3000Dashboard Features
Live Activity
Real-time view of what the Brain is doing
Test Results
View all generated tests and their status
Bug Tracker
List of discovered bugs with screenshots
Session History
View past test sessions and results
WebSocket Connection
The dashboard uses WebSocket for real-time updates:
javascript
1const ws = new WebSocket('ws://localhost:3000');2 3ws.onmessage = (event) => {4 const data = JSON.parse(event.data);5 6 switch (data.type) {7 case 'thinking':8 updateBrainStatus(data.thought);9 break;10 case 'test-completed':11 addTestResult(data);12 break;13 case 'bug-found':14 showBugNotification(data.bug);15 break;16 }17};