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 32921f7 commit 483d103Copy full SHA for 483d103
java/src/org/openqa/selenium/remote/DriverCommand.java
@@ -163,6 +163,7 @@ public interface DriverCommand {
163
String DELETE_DOWNLOADABLE_FILES = "deleteDownloadableFiles";
164
165
static CommandPayload NEW_SESSION(Capabilities capabilities) {
166
+ Require.nonNull("Capabilities", capabilities);
167
return NEW_SESSION(singleton(capabilities));
168
}
169
0 commit comments