forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
27 lines (25 loc) · 786 Bytes
/
index.js
File metadata and controls
27 lines (25 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* Browser Control for Parse Dashboard
*
* Real-time browser automation system for AI agents to verify features during development.
* This is a development-time debugging tool, NOT a replacement for unit/E2E tests.
*
* Usage:
* npm run browser-control
*
* API:
* HTTP: http://localhost:4040/browser-control/
* WebSocket: ws://localhost:4040/browser-control/stream/:sessionId
*
* @module browser-control
*/
const BrowserSessionManager = require('./BrowserSessionManager');
const BrowserControlAPI = require('./BrowserControlAPI');
const BrowserEventStream = require('./BrowserEventStream');
const ServerOrchestrator = require('./ServerOrchestrator');
module.exports = {
BrowserSessionManager,
BrowserControlAPI,
BrowserEventStream,
ServerOrchestrator
};