* Uninstalls an addon from the current browser session's profile. * * @param {(string|!Promise )} id ID of the addon to uninstall. * @return {!Promise} A promise that will resolve when the operation has * completed. * @see #installAddon
(id)
| 677 | * @see #installAddon |
| 678 | */ |
| 679 | async uninstallAddon(id) { |
| 680 | id = await Promise.resolve(id) |
| 681 | return this.execute(new command.Command(ExtensionCommand.UNINSTALL_ADDON).setParameter('id', id)) |
| 682 | } |
| 683 | |
| 684 | /** |
| 685 | * Take full page screenshot of the visible region |
no test coverage detected