* Schedules a command that targets this element with the parent WebDriver * instance. Will ensure this element's ID is included in the command * parameters under the "id" key. * * @param {!command.Command} command The command to schedule. * @return {!Promise } A promise that will be
(command)
| 2615 | * @private |
| 2616 | */ |
| 2617 | execute_(command) { |
| 2618 | command.setParameter('id', this) |
| 2619 | return this.driver_.execute(command) |
| 2620 | } |
| 2621 | |
| 2622 | /** |
| 2623 | * Schedule a command to find a descendant of this element. If the element |
no test coverage detected