Noticed that 2 of the major Selenium cloud providers use HTTP basic auth and don't use HTTPS.
I wonder why and what are the security implications of that 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";