File tree 1 file changed +4
-0
lines changed
bellatrix.web/src/main/java/solutions/bellatrix/web/infrastructure
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,10 @@ public static WebDriver start(BrowserConfiguration configuration) {
96
96
var gridSettings = webSettings .getGridSettings ().stream ().filter (g -> g .getProviderName ().equals (executionType .toLowerCase ())).findFirst ();
97
97
assert gridSettings .isPresent () : String .format ("The specified execution type '%s' is not declared in the configuration" , executionType );
98
98
driver = initializeDriverGridMode (gridSettings .get ());
99
+ } else if (executionType .equals ("healenium" )) {
100
+ var gridSettings = webSettings .getGridSettings ().stream ().filter (g -> g .getProviderName ().equals (executionType .toLowerCase ())).findFirst ();
101
+ assert gridSettings .isPresent () : String .format ("The specified execution type '%s' is not declared in the configuration" , executionType );
102
+ driver = initializeDriverGridMode (gridSettings .get ());
99
103
} else {
100
104
var gridSettings = webSettings .getGridSettings ().stream ().filter (g -> g .getProviderName ().equals (executionType .toLowerCase ())).findFirst ();
101
105
assert gridSettings .isPresent () : String .format ("The specified execution type '%s' is not declared in the configuration" , executionType );
You can’t perform that action at this time.
0 commit comments