* Schedules a command to launch Chrome App with given ID. * @param {string} id ID of the App to launch. * @return {!Promise } A promise that will be resolved * when app is launched.
(id)
| 668 | * when app is launched. |
| 669 | */ |
| 670 | launchApp(id) { |
| 671 | return this.execute(new command.Command(Command.LAUNCH_APP).setParameter('id', id)) |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * Schedules a command to get Chromium network emulation settings. |
nothing calls this directly
no test coverage detected