Values describing the list of commands understood by a remote server using the JSON wire protocol.
| 23 | /// Values describing the list of commands understood by a remote server using the JSON wire protocol. |
| 24 | /// </summary> |
| 25 | public static class DriverCommand |
| 26 | { |
| 27 | /// <summary> |
| 28 | /// Represents the Status command. |
| 29 | /// </summary> |
| 30 | public static readonly string Status = "status"; |
| 31 | |
| 32 | /// <summary> |
| 33 | /// Represents a New Session command |
| 34 | /// </summary> |
| 35 | public static readonly string NewSession = "newSession"; |
| 36 | |
| 37 | /// <summary> |
| 38 | /// Represents a Browser close command |
| 39 | /// </summary> |
| 40 | public static readonly string Close = "close"; |
| 41 | |
| 42 | /// <summary> |
| 43 | /// Represents a browser quit command |
| 44 | /// </summary> |
| 45 | public static readonly string Quit = "quit"; |
| 46 | |
| 47 | /// <summary> |
| 48 | /// Represents a GET command |
| 49 | /// </summary> |
| 50 | public static readonly string Get = "get"; |
| 51 | |
| 52 | /// <summary> |
| 53 | /// Represents a Browser going back command |
| 54 | /// </summary> |
| 55 | public static readonly string GoBack = "goBack"; |
| 56 | |
| 57 | /// <summary> |
| 58 | /// Represents a Browser going forward command |
| 59 | /// </summary> |
| 60 | public static readonly string GoForward = "goForward"; |
| 61 | |
| 62 | /// <summary> |
| 63 | /// Represents a Browser refreshing command |
| 64 | /// </summary> |
| 65 | public static readonly string Refresh = "refresh"; |
| 66 | |
| 67 | /// <summary> |
| 68 | /// Represents adding a cookie command |
| 69 | /// </summary> |
| 70 | public static readonly string AddCookie = "addCookie"; |
| 71 | |
| 72 | /// <summary> |
| 73 | /// Represents getting all cookies command |
| 74 | /// </summary> |
| 75 | public static readonly string GetAllCookies = "getCookies"; |
| 76 | |
| 77 | /// <summary> |
| 78 | /// Represents getting cookie command |
| 79 | /// </summary> |
| 80 | public static readonly string GetCookie = "getCookie"; |
| 81 | |
| 82 | /// <summary> |
nothing calls this directly
no test coverage detected