Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
eyaly committed Aug 22, 2023
2 parents 6836f4c + 0354a0d commit 6342f0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# List the start up tasks. Learn more: https://www.gitpod.io/docs/configure/workspaces/tasks
image: maven:3.6.3-jdk-8
tasks:
- name: Script Task
init: |
Expand Down
2 changes: 1 addition & 1 deletion gitpod/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.0.0</version>
<version>4.11.0</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void setup(TestInfo testInfo) throws MalformedURLException {
options.setCapability("sauce:options", sauceOptions);

String region = System.getenv().getOrDefault("REGION", "us-west-1");
String ondemandUrl = "https://ondemand." + region + ".saucelabs.com/wd/hub";
String ondemandUrl = "https://ondemand." + region + ".saucelabs.com:443/wd/hub";
URL url = new URL(ondemandUrl);

driver = new RemoteWebDriver(url, options);
Expand Down

0 comments on commit 6342f0d

Please sign in to comment.