We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d020c42 commit e97f752Copy full SHA for e97f752
lib/io.dart
@@ -103,7 +103,9 @@ class IOCommandProcessor implements CommandProcessor {
103
104
if (response.statusCode < 200 ||
105
response.statusCode > 299 ||
106
- (respBody is Map && respBody['status'] != 0)) {
+ (respBody is Map
107
+ && respBody['status'] != null
108
+ && respBody['status'] != 0)) {
109
throw new WebDriverException(
110
httpStatusCode: response.statusCode,
111
httpReasonPhrase: response.reasonPhrase,
0 commit comments