How does Genymotion prove information on the web?
How to test Genymotion on the web
✅ YES, you can test Genymotion web-based solutions using two methods:
1. Via Genymotion SaaS web interface
- Access https://cloud.geny.io to use the cloud-based Android emulator directly in your browser (requires a Genymotion SaaS subscription).
- Supported browsers: Chrome (v10.0.0+) and Firefox.
2. Embed using the open-source Web Player SDK
- Use the provided JavaScript SDK to integrate a Genymotion device instance into your website. Example code:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@genymotion/device-web-player@3.2.2/dist/css/device-renderer.min.css" />
<script src="https://cdn.jsdelivr.net/npm/@genymotion/device-web-player@3.2.2/dist/js/device-renderer.min.js"></script>
<div id="genymotion"></div>
<script>
const webrtcAddress = 'wss://***.***.***.***/'; // Replace with your instance's address
const options = { /* Configuration options */ };
new DeviceRendererFactory().setupRenderer(document.getElementById('genymotion'), webrtcAddress, options);
</script>
- Full implementation details: Web Player Documentation
- Allow WebRTC traffic (ports 51000–51100 TCP/UDP) and HTTPS (port 443).
- Chrome v10.0.0+ required for compatibility (troubleshooting guide).
For enterprise networks, configure firewalls/proxies as outlined in the SaaS Requirements.
What specific testing scenario are you aiming to validate?