Skip to content

Commit

Permalink
Switch cloud driver factories to use https urls.
Browse files Browse the repository at this point in the history
  • Loading branch information
erdi committed Nov 22, 2019
1 parent 2c8476e commit de97e5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/manual/src/docs/asciidoc/140-project.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ This page lists the high level changes between versions of Geb.
==== Improvements

* Improve integration between cloud browser gradle plugins and driver factories. [issue:579[]]
* Switch cloud driver factories to use https urls. [issue:599[]]

=== 3.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BrowserStackDriverFactory extends CloudDriverFactory {

@Override
String assembleProviderUrl(String username, String password) {
"http://$username:$password@hub.browserstack.com/wd/hub"
"https://$username:$password@hub.browserstack.com/wd/hub"
}

WebDriver create(String specification, Map<String, Object> additionalCapabilities = [:]) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SauceLabsDriverFactory extends CloudDriverFactory {

@Override
String assembleProviderUrl(String username, String password) {
"http://$username:$password@$host/wd/hub"
"https://$username:$password@$host/wd/hub"
}

@Override
Expand Down

0 comments on commit de97e5a

Please sign in to comment.