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
Post a Comment