File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
bellatrix.web/src/main/java/solutions/bellatrix/web/infrastructure Expand file tree Collapse file tree 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) {
9696 var gridSettings = webSettings .getGridSettings ().stream ().filter (g -> g .getProviderName ().equals (executionType .toLowerCase ())).findFirst ();
9797 assert gridSettings .isPresent () : String .format ("The specified execution type '%s' is not declared in the configuration" , executionType );
9898 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 ());
99103 } else {
100104 var gridSettings = webSettings .getGridSettings ().stream ().filter (g -> g .getProviderName ().equals (executionType .toLowerCase ())).findFirst ();
101105 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