Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Bug fixing/fix safari edge max instancesto1 #436

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ public class Edge extends Capability {
public String getWebDriverClass() {
return "org.openqa.selenium.edge.EdgeDriver";
}

public Edge() {
this.put("maxInstances", 1);
}

@Override
public String getIcon() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ public class Safari extends Capability {
public String getWebDriverClass() {
return "org.openqa.selenium.safari.SafariDriver";
}

public Safari() {
this.put("maxInstances", 1);
}

@Override
public String getIcon() {
Expand Down