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

Interface IWritableCapabilities

dotnet/src/webdriver/IWritableCapabilities.cs:25–39  ·  view source on GitHub ↗

Capabilities of the browser that you are going to use

Source from the content-addressed store, hash-verified

23/// Capabilities of the browser that you are going to use
24/// </summary>
25public 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}

Calls

no outgoing calls

Tested by

no test coverage detected