You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For at least Firefox 67 with geckodriver 0.24.0, the usesHandleParameter feature test returns an incorrect result due to a string case issue. It's looking for "Missing.*handle", but the error FF is returning contains missing field `handle`.
The text was updated successfully, but these errors were encountered:
The feature test wasn't corrently interpreting an error from at least
Firefox 67 due to a string case mismatch.
According to the webdriver spec, the error should be an InvalidArgument
error, so the test now primarily looks for that, and falls back to
checking the message text.
fixes#178
For at least Firefox 67 with geckodriver 0.24.0, the
usesHandleParameter
feature test returns an incorrect result due to a string case issue. It's looking for"Missing.*handle"
, but the error FF is returning containsmissing field `handle`
.The text was updated successfully, but these errors were encountered: