mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 1154432
: Fix max_length parameter to multiAction command
The Python client sends a `max_length' command parameter to multiAction, but the Marionette server looks for `max_len'. This likely a regression from a refactor. r=dburns --HG-- extra : commitid : JoOg9ZjpkhB extra : rebase_source : 3cc23bcc9934dfcbf4e3029e4876eb573d42296b
This commit is contained in:
parent
ae43aac96a
commit
c8252d07b4
@ -1882,7 +1882,7 @@ GeckoDriver.prototype.multiAction = function(cmd, resp) {
|
||||
|
||||
case Context.CONTENT:
|
||||
this.addFrameCloseListener("multi action chain");
|
||||
yield this.listener.multiAction( cmd.parameters.value, cmd.parameters.max_len);
|
||||
yield this.listener.multiAction(cmd.parameters.value, cmd.parameters.max_length);
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user