We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b824de0 commit 91b3777Copy full SHA for 91b3777
java/client/test/org/openqa/selenium/testing/drivers/ReflectionBackedDriverSupplier.java
@@ -75,12 +75,10 @@ public WebDriver get() {
75
}
76
77
try {
78
- System.out.println("try 2 arg");
79
return driverClass.getConstructor(Capabilities.class,
80
Capabilities.class)
81
.newInstance(desiredCapsToUse, requiredCapabilities);
82
} catch (NoSuchMethodException ex) {
83
- System.out.println("try 1 arg");
84
return driverClass.getConstructor(Capabilities.class).newInstance(desiredCapsToUse);
85
86
0 commit comments