* Sets the desired capability when requesting a new session. * If there is already a capability named key, its value will be overwritten with value. * This is a convenience wrapper around builder.getCapabilities().set(key, value) to support Builder method chaining. * @param {string} key The
(key, value)
| 349 | * @return {!Builder} A self reference. |
| 350 | */ |
| 351 | setCapability(key, value) { |
| 352 | this.capabilities_.set(key, value) |
| 353 | return this |
| 354 | } |
| 355 | |
| 356 | /** |
| 357 | * Configures the target browser for clients created by this instance. |
no test coverage detected