Browser.uninstallExtension() method
Uninstalls an extension. In Chrome, this is only available if the browser was created using pipe: true
and the --enable-unsafe-extension-debugging
flag is set.
Signature
class Browser {
abstract uninstallExtension(id: string): Promise<void>;
}
Parameters
Parameter | Type | Description |
---|---|---|
id | string |
Returns:
Promise<void>