How to disable WebRTC

Ask questions here, report about problems.
Post Reply
kojon
Posts: 15
Joined: Mon Mar 25, 2019 7:53 pm

How to disable WebRTC

Post by kojon » Wed Oct 09, 2019 1:21 am

Hi.

I want to disable WebRTC. How can I do it in the Human Emulator Studio?

Thanks.

User avatar
support
Site Admin
Posts: 210
Joined: Fri Feb 22, 2019 3:42 pm

Re: How to disable WebRTC

Post by support » Wed Oct 09, 2019 2:19 am

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.

kojon
Posts: 15
Joined: Mon Mar 25, 2019 7:53 pm

Re: How to disable WebRTC

Post by kojon » Wed Oct 09, 2019 6:39 am

What does WebSockets mean?

User avatar
support
Site Admin
Posts: 210
Joined: Fri Feb 22, 2019 3:42 pm

Re: How to disable WebRTC

Post by support » Wed Oct 09, 2019 7:45 am

"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);

Post Reply