defineCommand(name, method, path)code »
Defines a new command for use with this executor. When a command is sent,
the path
will be preprocessed using the command's parameters; any
path segments prefixed with ":" will be replaced by the parameter of the
same name. For example, given "/person/:name" and the parameters
"{name: 'Bob'}", the final command path will be "/person/Bob".
Parameters
- name
string
The command name.
- method
string
The HTTP method to use when sending this command.
- path
string
The path to send the command to, relative to
the WebDriver server's command root and of the form
"/path/:variable/segment".