Capabilities of the browser that you are going to use
| 23 | /// Capabilities of the browser that you are going to use |
| 24 | /// </summary> |
| 25 | public interface IWritableCapabilities : ICapabilities |
| 26 | { |
| 27 | /// <summary> |
| 28 | /// Sets a capability of the browser. |
| 29 | /// </summary> |
| 30 | /// <param name="capability">The capability to set.</param> |
| 31 | /// <param name="capabilityValue">The value for the capability.</param> |
| 32 | void SetCapability(string capability, object capabilityValue); |
| 33 | |
| 34 | /// <summary> |
| 35 | /// Gets this capabilities object as a read-only object. |
| 36 | /// </summary> |
| 37 | /// <returns>The capabilities object as a read-only object.</returns> |
| 38 | ICapabilities AsReadOnly(); |
| 39 | } |
no outgoing calls
no test coverage detected