MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / uninstallAddon

Method uninstallAddon

javascript/selenium-webdriver/firefox.js:680–683  ·  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

678 * @see #installAddon
679 */
680 async uninstallAddon(id) {
681 id = await Promise.resolve(id)
682 return this.execute(new command.Command(ExtensionCommand.UNINSTALL_ADDON).setParameter('id', id))
683 }
684
685 /**
686 * Take full page screenshot of the visible region

Callers 1

addon_test.jsFile · 0.80

Calls 3

resolveMethod · 0.80
setParameterMethod · 0.80
executeMethod · 0.65

Tested by

no test coverage detected