Common Issues
These are some common issues which others have encountered whilst using the service. For debugging tools and features, see the Debugging guide.
CDP bridge cannot be initialized: EnableNodeCliInspectArguments fuse is disabled
This warning appears when your Electron app has the EnableNodeCliInspectArguments fuse explicitly disabled. The CDP (Chrome DevTools Protocol) bridge relies on the --inspect flag to connect to Electron's main process, so when this fuse is disabled, the service cannot provide access to the main process APIs.
Impact
When this fuse is disabled:
- ❌
browser.electron.execute()- main process API access will not work - ❌
browser.electron.mock()- mocking main process APIs will not work - ❌ Main process log capture will not work (see Debugging - Log Capture Requirements)
- ✅ Renderer process testing continues to work normally
- ✅ Renderer process log capture continues to work (uses Puppeteer, not CDP bridge)
- ✅ Service initialization continues normally - no crashes or failures
- ✅ Clear error messages when attempting to use disabled APIs