selenium - SauceLabs and BrowserStack sending unencrypted credentials -


noticed 2 of major selenium cloud providers use http basic auth , don't use https.

i wonder why , security implications of decision.

saucelabs

this.driver = new remotewebdriver(   new url("http://your_username:your_access_key@ondemand.saucelabs.com:80/wd/hub"),   capabilities); 

browserstack

public static final string url = "http://" + username + ":" + automate_key + "@hub.browserstack.com/wd/hub"; 

browserstack provides both https , http end point. use think right. examples, please have @ this doc.

disclaimer: work @ browserstack.com


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -