Security in Selenium 2?

为君一笑 提交于 2019-12-01 11:26:42

Quick hack: make an ssh tunnel.

Forward remote server's port 4444 as a local port using following ssh command:

ssh user@remotesrv -L 4444:127.0.0.1:4444

Now when you connect to your local port 4444, it actually connects to your server's port 4444 on a secure link. Refer to this link for tutorial.

Afterwards, just open the remote web driver as you normally do.

This will now be on a secure link.

You would have to run your own SSL proxy in front of the hub and the nodes. It is presumed that you aren't publicly exposing your grid.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!