Hi.
I want to disable WebRTC. How can I do it in the Human Emulator Studio?
Thanks.
How to disable WebRTC
Re: How to disable WebRTC
Hello.
You can do it using the program settings. Open the settings dialog using menu Service->Settings. Open tab "Browser" and unset check "Enable Web RTC (need restart)".
After it restart the program.
Or using command $browser->enable_web_socket(false);. When WebSocket is disabled, WebRTC also does not work.
You can do it using the program settings. Open the settings dialog using menu Service->Settings. Open tab "Browser" and unset check "Enable Web RTC (need restart)".
After it restart the program.
Or using command $browser->enable_web_socket(false);. When WebSocket is disabled, WebRTC also does not work.
Re: How to disable WebRTC
What does WebSockets mean?
Re: How to disable WebRTC
"WebSocket is a communications protocol for a persistent, bi-directional, full duplex TCP connection from a user's web browser to a server."
You can enable or disable it using command $browser->enable_web_socket(true); or $browser->enable_web_socket(false);
You can enable or disable it using command $browser->enable_web_socket(true); or $browser->enable_web_socket(false);