From 667e525ae974ac3ae31cd4a41e4b023bc988c0f7 Mon Sep 17 00:00:00 2001
From: Vlad Filippov <vlad.filippov@gmail.com>
Date: Wed, 12 Aug 2015 15:44:28 +0100
Subject: [PATCH] geckodriver: Merge pull request #8 from vladikoff/docs

add some documentation

Source-Repo: https://github.com/mozilla/geckodriver
Source-Revision: 8bb391c28b613c7b8327d0978898c832bbd4da50

committer: vladikoff <vlad.filippov@gmail.com>
---
 testing/geckodriver/README.md | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 testing/geckodriver/README.md

diff --git a/testing/geckodriver/README.md b/testing/geckodriver/README.md
new file mode 100644
index 0000000000000..ff3103f7e7f85
--- /dev/null
+++ b/testing/geckodriver/README.md
@@ -0,0 +1,26 @@
+wires
+================
+
+> WebDriver <-> Marionette proxy
+
+## Build Project
+
+Download rust from [rust-lang.org](https://www.rust-lang.org/)
+
+To build the project:
+
+```
+cargo build
+```
+
+## Usage
+
+```
+cargo run [options] [--] [<args>...]
+```
+
+For example, you can specify a binary path to Firefox and run the proxy:
+
+```
+cargo run -b /Applications/FirefoxNightly.app/Contents/MacOS/firefox-bin
+```