webdriver 0.3.1

Library implementing the wire protocol for the W3C WebDriver specification.
Documentation
#![allow(non_snake_case)]

#[macro_use]
extern crate log;
extern crate rustc_serialize;
extern crate hyper;
extern crate regex;

#[macro_use] pub mod macros;
pub mod httpapi;
pub mod command;
pub mod common;
pub mod error;
pub mod server;
pub mod response;


#[test]
fn it_works() {
}