Skip to content

Commit

Permalink
Update to webdriver 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Jan 6, 2017
1 parent 168619a commit cd5b827
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -26,5 +26,5 @@ slog-atomic = "0.4"
slog-stdlog = "1"
slog-stream = "1"
uuid = "0.1.18"
webdriver = "0.17.1"
webdriver = "0.18"
zip = "0.1.16"
4 changes: 2 additions & 2 deletions src/marionette.rs
Expand Up @@ -559,14 +559,14 @@ impl MarionetteSession {
let x = try_opt!(
try_opt!(resp.result.find("x"),
ErrorStatus::UnknownError,
"Failed to find x field").as_u64(),
"Failed to find x field").as_i64(),
ErrorStatus::UnknownError,
"Failed to interpret x as integer");

let y = try_opt!(
try_opt!(resp.result.find("y"),
ErrorStatus::UnknownError,
"Failed to find y field").as_u64(),
"Failed to find y field").as_i64(),
ErrorStatus::UnknownError,
"Failed to interpret y as integer");

Expand Down

0 comments on commit cd5b827

Please sign in to comment.