MCPcopy
hub / github.com/SeleniumHQ/selenium / uninstallAddon

Method uninstallAddon

javascript/selenium-webdriver/firefox.js:679–682  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 1

addon_test.jsFile · 0.80

Calls 2

setParameterMethod · 0.80
executeMethod · 0.65

Tested by

no test coverage detected