File tree Expand file tree Collapse file tree 10 files changed +15
-15
lines changed
bellatrix.android/src/main/java/solutions/bellatrix/android
bellatrix.desktop/src/main/java/solutions/bellatrix/desktop
bellatrix.ios/src/main/java/solutions/bellatrix/ios
bellatrix.playwright/src/main/java/solutions/bellatrix/playwright/infrastructure
bellatrix.web/src/main/java/solutions/bellatrix/web/infrastructure Expand file tree Collapse file tree 10 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -23,5 +23,5 @@ public class GridSettings {
2323 @ Getter @ Setter private String providerName ;
2424 @ Getter @ Setter private String optionsName ;
2525 @ Getter @ Setter private String url ;
26- @ Getter @ Setter private List <HashMap <String , String >> arguments ;
26+ @ Getter @ Setter private List <HashMap <String , Object >> arguments ;
2727}
Original file line number Diff line number Diff line change 3636public class DriverService {
3737 private static final ThreadLocal <Boolean > DISPOSED ;
3838 private static final ThreadLocal <AppConfiguration > APP_CONFIGURATION ;
39- private static final ThreadLocal <HashMap <String , String >> CUSTOM_DRIVER_OPTIONS ;
39+ private static final ThreadLocal <HashMap <String , Object >> CUSTOM_DRIVER_OPTIONS ;
4040 private static final ThreadLocal <AndroidDriver > WRAPPED_ANDROID_DRIVER ;
4141 private static boolean isBuildNameSet = false ;
4242 private static String buildName ;
@@ -50,7 +50,7 @@ public class DriverService {
5050 DISPOSED .set (false );
5151 }
5252
53- public static HashMap <String , String > getCustomDriverOptions () {
53+ public static HashMap <String , Object > getCustomDriverOptions () {
5454 return CUSTOM_DRIVER_OPTIONS .get ();
5555 }
5656
Original file line number Diff line number Diff line change 2222public class GridSettings {
2323 @ Getter @ Setter private String providerName ;
2424 @ Getter @ Setter private String url ;
25- @ Getter @ Setter private List <HashMap <String , String >> arguments ;
25+ @ Getter @ Setter private List <HashMap <String , Object >> arguments ;
2626}
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ public class AppConfiguration {
2020 private final Lifecycle lifecycle ;
2121 private int height ;
2222 private int width ;
23- final HashMap <String , String > appiumOptions ;
23+ final HashMap <String , Object > appiumOptions ;
2424
25- public HashMap <String , String > getAppiumOptions () {
25+ public HashMap <String , Object > getAppiumOptions () {
2626 return appiumOptions ;
2727 }
2828
Original file line number Diff line number Diff line change 3333public class DriverService {
3434 private static final ThreadLocal <Boolean > DISPOSED ;
3535 private static final ThreadLocal <AppConfiguration > APP_CONFIGURATION ;
36- private static final ThreadLocal <HashMap <String , String >> CUSTOM_DRIVER_OPTIONS ;
36+ private static final ThreadLocal <HashMap <String , Object >> CUSTOM_DRIVER_OPTIONS ;
3737 private static final ThreadLocal <WindowsDriver > WRAPPED_DRIVER ;
3838
3939 static {
@@ -45,7 +45,7 @@ public class DriverService {
4545 DISPOSED .set (false );
4646 }
4747
48- public static HashMap <String , String > getCustomDriverOptions () {
48+ public static HashMap <String , Object > getCustomDriverOptions () {
4949 return CUSTOM_DRIVER_OPTIONS .get ();
5050 }
5151
Original file line number Diff line number Diff line change 2222public class GridSettings {
2323 @ Getter @ Setter private String providerName ;
2424 @ Getter @ Setter private String url ;
25- @ Getter @ Setter private List <HashMap <String , String >> arguments ;
25+ @ Getter @ Setter private List <HashMap <String , Object >> arguments ;
2626}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class AppConfiguration {
2626 @ Getter private String deviceName ;
2727 @ Getter private String iosVersion ;
2828 @ Getter private Boolean isMobileWebExecution ;
29- @ Getter HashMap <String , String > appiumOptions ;
29+ @ Getter HashMap <String , Object > appiumOptions ;
3030
3131 public AppConfiguration (boolean isMobileWebExecution ) {
3232 this .isMobileWebExecution = isMobileWebExecution ;
Original file line number Diff line number Diff line change 3333public class DriverService {
3434 private static final ThreadLocal <Boolean > DISPOSED ;
3535 private static final ThreadLocal <AppConfiguration > APP_CONFIGURATION ;
36- private static final ThreadLocal <HashMap <String , String >> CUSTOM_DRIVER_OPTIONS ;
36+ private static final ThreadLocal <HashMap <String , Object >> CUSTOM_DRIVER_OPTIONS ;
3737 private static final ThreadLocal <IOSDriver > WRAPPED_IOS_DRIVER ;
3838
3939 static {
@@ -45,7 +45,7 @@ public class DriverService {
4545 DISPOSED .set (false );
4646 }
4747
48- public static HashMap <String , String > getCustomDriverOptions () {
48+ public static HashMap <String , Object > getCustomDriverOptions () {
4949 return CUSTOM_DRIVER_OPTIONS .get ();
5050 }
5151
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class BrowserConfiguration {
2626 private int width ;
2727 private int version ;
2828 private String testName ;
29- private final HashMap <String , String > playwrightOptions ;
29+ private final HashMap <String , Object > playwrightOptions ;
3030
3131 public BrowserConfiguration (BrowserTypes browserTypes , Lifecycle browserBehavior ) {
3232 this .browserTypes = browserTypes ;
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ public class BrowserConfiguration {
2929 @ Setter @ Getter private int version ;
3030 @ Setter @ Getter private Platform platform ;
3131 @ Setter @ Getter private String testName ;
32- final HashMap <String , String > driverOptions ;
32+ final HashMap <String , Object > driverOptions ;
3333
34- public HashMap <String , String > getDriverOptions () {
34+ public HashMap <String , Object > getDriverOptions () {
3535 return driverOptions ;
3636 }
3737
You can’t perform that action at this time.
0 commit comments