You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Handling of port in the url is required for testing in cloud platform like saucelabs.
E.g.
public static final String USERNAME = "YOUR_USERNAME";
public static final String ACCESS_KEY = "YOUR_ACCESS_KEY";
public static final String URL = "https://" + USERNAME + ":" + ACCESS_KEY + "@ondemand.saucelabs.com:443/wd/hub";
Here, port: "443" is required to be input in case of saucelab url.
The text was updated successfully, but these errors were encountered:
Description
Handling of port in the url is required for testing in cloud platform like saucelabs.
E.g.
public static final String USERNAME = "YOUR_USERNAME";
public static final String ACCESS_KEY = "YOUR_ACCESS_KEY";
public static final String URL = "https://" + USERNAME + ":" + ACCESS_KEY + "@ondemand.saucelabs.com:443/wd/hub";
Here, port: "443" is required to be input in case of saucelab url.
The text was updated successfully, but these errors were encountered: