-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Browsers and Platforms objects to make these options more acces…
…sible. Also added checks to ensure that the correct platforms and browsers are being passed through the Toolkit and subsequent SauceLabs API.
- Loading branch information
dwhit88
committed
Jan 18, 2019
1 parent
437a644
commit 82f32d5
Showing
10 changed files
with
118 additions
and
19 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+84 Bytes
(100%)
out/production/classes/gateways/sauceLabs/SauceLabsUtils.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package framework; | ||
|
||
public class Browsers { | ||
public static String firefox = "firefox"; | ||
public static String chrome = "chrome"; | ||
public static String safari = "safari"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package framework; | ||
|
||
public class Platforms { | ||
public static String mojave = "macOS 10.14"; | ||
public static String highSierra = "macOS 10.13"; | ||
public static String sierra = "macOS 10.12"; | ||
public static String elCapitan = "OS X 10.11"; | ||
public static String yosemite = "OS X 10.10"; | ||
|
||
public static String windows10 = "Windows 10"; | ||
public static String windows8_1 = "Windows 8.1"; | ||
public static String windows8 = "Windows 8"; | ||
public static String windows7 = "Windows 7"; | ||
public static String linux = "Linux"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters