* @param {(Capabilities|Map |Object)=} other Another set of * capabilities to initialize this instance from.
(other = undefined)
| 94 | * capabilities to initialize this instance from. |
| 95 | */ |
| 96 | constructor(other = undefined) { |
| 97 | super(other) |
| 98 | |
| 99 | /** @private {!Object} */ |
| 100 | this.options_ = this.get(OPTIONS_CAPABILITY_KEY) || {} |
| 101 | |
| 102 | this.set(OPTIONS_CAPABILITY_KEY, this.options_) |
| 103 | this.setBrowserName(Browser.INTERNET_EXPLORER) |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Whether to disable the protected mode settings check when the session is |
nothing calls this directly
no test coverage detected