Throws if is . If is .
()
| 182 | /// </summary> |
| 183 | /// <exception cref="WebDriverException">If <see cref="Value"/> is <see langword="null"/>.</exception> |
| 184 | [MemberNotNull(nameof(Value))] |
| 185 | internal Response EnsureValueIsNotNull() |
| 186 | { |
| 187 | if (Value is null) |
| 188 | { |
| 189 | throw new WebDriverException("Response from remote end doesn't have $.Value property"); |
| 190 | } |
| 191 | |
| 192 | return this; |
| 193 | } |
| 194 | |
| 195 | /// <summary> |
| 196 | /// Returns the object as a string. |
no outgoing calls
no test coverage detected