We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aad11d commit a4df332Copy full SHA for a4df332
java/client/src/org/openqa/selenium/firefox/internal/MarionetteConnection.java
@@ -256,7 +256,7 @@ private String serializeCommand(Command command) {
256
|| DriverCommand.MOVE_TO.equals(commandName)) {
257
String actionName = seleniumToMarionetteCommandMap.containsKey(commandName) ?
258
seleniumToMarionetteCommandMap.get(commandName) : commandName;
259
- commandName = "actionChain";
+ commandName = DriverCommand.ACTION_CHAIN;
260
List<Object> action = Lists.newArrayList();
261
action.add(actionName);
262
if (params.containsKey("element")) {
0 commit comments