Граф коммитов

255 Коммитов

Автор SHA1 Сообщение Дата
jgraham 353c4ddf26 webdriver: Don't return existing session id when the wrong one is supplied (#99)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: dae3f0689a1d589d10225d558e0528fb232a3842

committer: Andreas Tolfsen <ato@mozilla.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3e07d0db86bf8e61d28cc43ad77b9b4f3b74684f
2017-06-01 08:17:13 +01:00
Jason Juang 73d6e8dbb9 webdriver: Fix spelling of unhandledPromptBehavior (#97)
The W3C spec requires the American spelling.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: bdd5efda8cf6acb5be1207a77be86e16e1fb5128

committer: Andreas Tolfsen <ato@mozilla.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 974924ce0fe8300e959b4482d62363a5f48dce94
2017-05-23 15:50:02 +01:00
Andreas Tolfsen b64fa895d7 webdriver: Make log output safe for windows prompt (#96)
* server: make log output safe for windows prompt

The characters "←" and "→" are obfuscated in the Windows command
prompt.  Use ASCII versions.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 6de6e225e14b545381719e2e97398bc1a8f87b13

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 549018e98173ca5c72e4ecb32c7cf9c0cf363527
2017-05-08 14:45:19 +01:00
Jason Juang 7cedc56dd8 webdriver: Fix error messages for timeout params.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: d568fd0d344c017a8ef9b116bc6db055a7684278

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 118c87f1de638284005278b375a0b17a48c835aa
2017-05-04 09:49:01 +01:00
Andreas Tolfsen 4be89870e8 webdriver: cargo: release v0.25.2
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 6e19650591d50b8a657bf8f0f6ac1c7ef648473e

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 2c50381ad3826331902c31b572c599cbeb64cdf2
2017-04-20 14:00:37 +01:00
Andreas Tolfsen 68a2f19ade webdriver: command: improve error handling of decoding request body as json
This patch splits the decoding of the HTTP request body out to a
separate function, decode_body, on WebDriverMessage.  This is in
line with get_session_id, and reduces somewhat the complexity of
WebDriverMessage::from_http.

It also handles rustc_serialize::json::ParserErrors individually, by
making SyntaxError discernable from IoError.

The SyntaxError error handler re-uses the stacktrace produced by the
JSON parser when failing to decode the HTTP request body as JSON.
This improves the readability of the returned error.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: d7fe400fa903b752b3c90c2c7e80ae9d5719e16b

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 90bf8178d66e2871bb00d2e4f9f230941c49e82c
2017-04-20 13:55:59 +01:00
Andreas Tolfsen 61d157315c webdriver: error: enable custom stacktraces in WebDriverError
With the new constructor WebDriverError::new_with_stack it is possible
for consumers to set their own stacktraces.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 46761f45b0e0fe70ec78acf360c492b800c8a60a

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 05cf0f383c26314b4954e13bdfe5ae53a7985649
2017-04-20 13:55:59 +01:00
Andreas Tolfsen 53305fe9a1 webdriver: server: improve logging of http requests and responses
HTTP requests and responses will now be logged in a
similar style as Marionette chatter in geckodriver (following
https://github.com/mozilla/geckodriver/pull/636) and in the Marionette
server in Gecko, by employing arrows.

The logging of responses is reduced from two log entries, to one.
It also makes use of the fmt::Display trait of the status.

For requests, the HTTP method, URI, and full body is included.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7e2a2042fa80018c8bce8bddee81ab6985db65f8

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 5a35483899ddc0125fef02b221627fa0fc005085
2017-04-20 13:55:59 +01:00
Andreas Tolfsen afda88bb0b webdriver: capabilities: enclose ipv6 hosts in brackets
According to https://tools.ietf.org/html/rfc2732 and
https://url.spec.whatwg.org/, IPv6 hostnames when represented in URLs
must be enclosed with "[" and "]" bracket characters.

Fixes: https://github.com/mozilla/geckodriver/issues/655
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: a43ba8a5225ec07e518ceb48a71524ad875a69b9

committer: David Burns <david.burns@theautomatedtester.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f7db0203d86c7100faba25b2e8df0286b5b32f06
2017-04-19 21:52:03 +01:00
Andreas Tolfsen 36a1267d07 webdriver: cargo: bump version number to 0.25.1
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 935a526e0a40f6644731f8c2de3facd12015eeab

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a35e400dbfbf866da15c1451755db16a6cd423a8
2017-04-18 19:32:03 +01:00
Andreas Tolfsen 7aff483d79 webdriver: capabilities, command: provide a few structs with Debug trait (#89)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 921b6b1ffe35f1ab30276909d0728aaf93a674d6

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7c637da45300041c6d433219f10b84dd2e295c0a
2017-04-12 15:00:26 +01:00
Jason Juang edc5cade82 webdriver: Recognize sslProxy and sslProxyPort capabilities.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 50a0ee1bc6d37fef72066b8014e2b4fd85fa2f46

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8262581b30698b331092a315f58771e3160f70cf
2017-04-11 14:21:17 +01:00
Jason Juang f6aa609d74 webdriver: Fix validate_port if value is a Json::U64 (#87)
Fixes: https://github.com/mozilla/geckodriver/issues/631
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 43defd8d6bf33bd1edf56fd6e669660f99fdb20e

committer: Andreas Tolfsen <ato@mozilla.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7c3bea030da6982a4903328e18c4cbf96b284e10
2017-04-11 13:28:00 +01:00
Andreas Tolfsen 0a800c0b01 webdriver: cargo: release 0.25.0
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 8a36155ebd199bcba9cc57d1ea40ca97490d59a2

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f29569588ee2304a0d0f199520f0aa46dac3261e
2017-04-10 13:24:27 +01:00
Andreas Tolfsen 3a48cac34b webdriver: error: lint
No functional changes, except aligning how we import standard library
functions.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: c0aabb6c77e00f05da1a90efa258fe5d615373b5

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 33b0ef4a1ea24e0711a149f57d7443f16cc08fab
2017-04-03 13:56:09 +01:00
Andreas Tolfsen 5409db8464 webdriver: error: add documentation for ErrorStatus
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f7a78ba7827b790a9adbbfca218f5c937fe362e2

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 2bb1c40a42afeb6a8f157ca66712c8fd8efe558c
2017-04-03 13:56:09 +01:00
Andreas Tolfsen 5184739f1b webdriver: error: rename WebDriverError.status_code to error_code
The WebDriver standard uses the term "JSON error code" and "error code" to
refer to the string identifier of the error type.  We should follow suit.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: fd03b53eb29dd4dea37f41648196c7888905693f

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0873788dc46ddbd3cd54c47961cb2116c0379506
2017-04-03 13:56:09 +01:00
Andreas Tolfsen bf272f948c webdriver: error: align errors with standard
Several errors were outdated, amongst others element click intercepted,
element not interactable/element not visible, invalid element
coordinates/invalid coordinates, no such cookie, unable to capture screen,
and unknown command.

Fixes: https://github.com/mozilla/geckodriver/issues/579
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2ea0bb192c7239addb744bd2a7e8fdca4977d990

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0cac138a692b55c0f6359eb18cb722f0106a7cdf
2017-04-03 13:56:09 +01:00
James Graham 3278fdd16f webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b4b3ec9ef00b030d09f226fcb7cd97f61725195c

committer: Andreas Tolfsen <ato@mozilla.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 119f19fe6b4a28137b43265ff4eb5d2a8ddc2d40
2017-03-27 15:35:42 +01:00
Andreas Tolfsen 67d7c43e30 webdriver: response: add WindowRectResponse and remove WindowPosition/WindowSize
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4df53e9535c9bc3787f87438cc2eadbdc8bea268

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : e8084e95ad3235fe44b96366e36a2a0368f60430
2017-03-24 15:40:56 +00:00
Andreas Tolfsen 56ae0efa74 webdriver: command: add window rect and remove size/position
Introduces new WebDriver commands GetWindowRect and SetWindowRect,
which replace GetWindowSize, SetWindowSize, and GetWindowPosition,
SetWindowPosition.

The routes for the removed commands have been mapped to the new commands
since their input can be used interchangably with the new commands.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: df8e357427b720fe0be03d4e212cf74323ceb3d3

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 973e0527070c0e3b022fda62516ca550416b02d9
2017-03-24 15:40:56 +00:00
Andreas Tolfsen e6ff23af92 webdriver: httpapi: add GetWindowRect and SetWindowRect routes
This adds two new routes for the GetWindowRect and SetWindowRect commands.
Existing routes for SetWindowPosition, GetWindowPosition, SetWindowSize,
and GetWindowSize has been preserved for backwards compatibility.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b4c4c40105f612ade0a4d14f7ac949138d9fceb6

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 1d48c43c98ff66cabb23c15fa9bd59be8c7d4af8
2017-03-24 15:40:56 +00:00
jgraham 932e221b15 webdriver: Add support for the new-style NewSession command in addition to the leacgy one. (#67)
This adds a BrowserCapabilities trait. Implementations must call
NewSessionParameters::match_browser with an object implementing this
trait in order to get the set of capabilites that are supported by the
browser and should be used for the current session.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 3e73b0b6bbbd7bdb438aa54c2e8b249493c4e763

committer: GitHub <noreply@github.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 948ed8a64e9cbf2f680cb373cdb9761075dbd0f4
2017-03-23 16:26:32 +00:00
AutomatedTester d13b8b0736 webdriver: Merge pull request #82 from AutomatedTester/cleanup
Remove end points no longer supported by Selenium

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 3adbb41823203c71779f5a19abf377aab93fb22d

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8a917910bd245d62c3f27079b13907aadaa78c08
2017-03-23 14:49:01 +00:00
David Burns 53d17e41e6 webdriver: Allow negative numbers for x and y on pointerMove. (#81)
In Bug 1347658, negative numbers were allowed for pointer move.
This was added to the WebDriver specification in December.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 56a1efe45c0bda811da5e785977844a373bd67a3

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0540841c55629dd0077747299d2037df180edfbe
2017-03-20 18:36:31 +00:00
James Graham be5006e949 webdriver: Update SendKeysParameters to match spec.
Expect a property called "text" that takes a string.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: bdc921b9d0c041b7b285efe37b883e671dfcaaa8

committer: David Burns <david.burns@theautomatedtester.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3db851d5c0b7cc9d49adceba05e8ef08bb6af100
2017-03-15 13:54:19 +00:00
James Graham b97884f422 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 05feb81df65b2ab91d4173404132f6cfa7aa8c5a

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 6f5c069677512553543341f903fb4ea96667bd2e
2017-03-07 18:50:56 +00:00
jgraham eb1977d9c4 webdriver: Fix CookieResponse and CloseWindowResponse serialization. (#79)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b2490b29e071d9760ba1005055b087218c41dba2

committer: GitHub <noreply@github.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c95921ba8b1bd718aedbc4b7b0b94b6a9e98c682
2017-03-07 18:47:18 +00:00
Andreas Tolfsen 49d07b5267 webdriver: cargo: bump to v0.23.0
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 37b1d1946df7f65718d04dba0e7c3a6865657efd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a667ca74d513c826e848af189a4810ff73649266
2017-03-03 16:10:34 +00:00
Maja Frydrychowicz 39da27b928 webdriver: Replace element with origin in PointerMove (#76)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 364c6b299dfd705806212d0ff5c5b9ba8ccdc828

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 371736ab7a66273efa9069a86c2b10bba311e6bb
2017-03-03 15:14:16 +00:00
Andreas Tolfsen 0651de76f2 webdriver: command: match on correct implicit timeout duration key
Fixes: https://github.com/mozilla/webdriver-rust/issues/77
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 5ae165b363313fb08ca2da8e5ed36bb132c849e4

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4af0049bfdf3939ac28b0a6adee7812102e3af98
2017-03-03 14:09:00 +00:00
James Graham 1210550edc webdriver: Merge pull request #75 from mozilla/v0.22
Update version number for release

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 87bbf8cf0808752b92b40d5f5befff38dde6d601

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 05efaf2baf96b24664277c1768dcdd2ea32bbf43
2017-02-27 17:13:51 +00:00
James Graham 38945622ee webdriver: Merge pull request #74 from mozilla/value_error
Wrap error responses in a 'value' object

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: da9156057cc25bb5c6a12b5a88a791d51178757d

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7ad8042770c5598ab8d3756c15493d475696da0f
2017-02-27 15:16:32 +00:00
James Graham 2c96e84776 webdriver: Merge pull request #73 from mozilla/value_wrapper
Wrap responses in a 'value' key.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e5838d723df40b6a75e0f9ac3a2270b4df283625

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 9a36e3f67e9709a7b07a447ccc080236f1868e14
2017-02-25 09:16:31 +00:00
Andreas Tolfsen 9b03a9e1a7 webdriver: readme: add crates.io badge
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 29e5157df65d589f2a277d828e581b811a98979b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 199370a68ab29d0d06cb65205f5efbe443f446d9
2017-02-24 16:39:42 +00:00
Andreas Tolfsen 558d0cd292 webdriver: cargo: bump version to 0.21.0
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2ae1d53535870a9e0ba02f3b2e6899ff553962a4

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0ef0f97b2a3c74ea58f300ddea9527de06350164
2017-02-24 16:36:12 +00:00
Andreas Tolfsen ec28c8a28a webdriver: cargo: correct out of date information
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: c2dd901bfe8b5ce842ee3f57756a7476e1510df8

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4bb0d6a8318c38b471e2f15c957809c69e96b138
2017-02-24 16:33:43 +00:00
Andreas Tolfsen 1939be5f35 webdriver: Merge pull request #72 from andreastt/set-timeouts-format
Align timeouts format with spec

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 426ea889f298133c12bdd9a4b107f130d18ac592

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a985439baad85ea869a576b9bd3fb2b6413d60fa
2017-02-24 16:27:17 +00:00
ddh 65639dddf9 webdriver: bumped hyper to 0.10 and cookie to 0.6
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f39a13df8cb83274393d6f7b550c3f66af78eb6d

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 934e79fa8338f2d6624ace1ed485e8341dc62dd5
2017-02-22 16:07:27 +00:00
jgraham 2e598696ed webdriver: Fix pointerMove and pointerCancel action types
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 59949424149700b0785bf33eb0d019ecd8279461

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 913cf2bd043b239b676f921cda544b8220a5df3f
2017-02-10 18:05:20 +00:00
Andreas Tolfsen f06d3429dc webdriver: error: include backtrace for errors originating from rust (#65)
The WebDriver standard says the stacktrace field on error responses are
implementation-defined, but the field cannot be omitted.  The errors
originating from Marionette are passed on without modification and
include the expected stacktrace.

This exposes a backtrace from the Rust crate with the same name for the
errors originating from within the library itself.

Fixes: https://github.com/mozilla/webdriver-rust/issues/63
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 29ed83f0dfe4da5dbb2f143e867f145669812679

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d5fa92627e7e0913349ffadc01efdd19d80a6cb6
2017-01-30 07:06:31 -08:00
Andreas Tolfsen 7af8dcca57 webdriver: Merge pull request #64 from andreastt/delete-session-on-last-window
Delete session on last window

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: cdddf6c3f8eb7c68decd592d94caff903b56cf0d

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : e062e09a1e31c2802906a7ef2002895829640900
2017-01-26 15:32:03 +00:00
Mike Pennisi 96a8d6c26f webdriver: Merge pull request #62 from jugglinmike/response-headers
Correct response headers

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 91059d95763afdb06dc5219515ddcf4f6a5e0dfd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7855e609ea286e0d70fa98678945e4712f8168d7
2017-01-24 21:02:40 +00:00
James Graham 9901abb31e webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: dbf91df36b3e22bfc55e0cd05d02c57d224f2283

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0666554ddc9b1bd328624a007f67a74516baccf9
2017-01-16 12:00:27 +00:00
Andreas Tolfsen 94c4bea7f6 webdriver: readme: fix link to image
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 847188b1c3ad8ecf5062e61cde1763f5cedbac93

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : aec528570a183fb26636c6ed5346ddb6e16c27aa
2017-01-11 13:37:51 +00:00
Andreas Tolfsen 89917d1e68 webdriver: readme: add badges
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: fad18fafb255ee709749f2a37dec5a5ec21afddc

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f5aefd8e44a7e340a21aef2da3d7ceb4b03e8f88
2017-01-11 13:36:53 +00:00
Andreas Tolfsen 22b0603fa6 webdriver: command, httpapi: rename GetCookie to GetNamedCookie (#60)
The command for getting a single cookie by name is named ‘Get Named
Cookie’ in the WebDriver specification.  We should reflect this name
in the Rust library.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7ec65451c99b638655c72e7b9718a374ff60de87

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 422c72b26ead80c02f38c47b1e623662d04abfc7
2017-01-11 13:31:44 +00:00
Xidorn Quan 3feb37600c webdriver: Merge pull request #61 from upsuper/upgrade-regex
Upgrade regex to 0.2

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 14094d6a75a46577edb21eb59896460fcf4e9722

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a20fe4dfb9a5b6bb0692e7ab4bb1b2fd9db7ec70
2017-01-11 13:10:00 +00:00
James Graham 5a1753bfe7 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 0bb4f061dea2e22cdff95859575d7461a5aa36f0

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : bd34ee4b415de1efafb3a66313e82d6db5b7ef7a
2017-01-06 17:30:00 +00:00
jgraham 523aa36c71 webdriver: Fix check that key codes in actions are a single char. (#58)
Previously this used String.len() which was incorrect since it counts bytes, not characters.
Moving to a chars() iterator fixes the issue.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 200afc084c8426b5dbc678a0c85dbb3c20c37777

committer: GitHub <noreply@github.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3615c68aac49e5f819dc87969e8461f0abbf37c8
2017-01-06 17:22:11 +00:00
Andreas Tolfsen 4db1bffeb9 webdriver: error: add ErrorStatus::InsecureCertificate
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 697c8e9de5c4e6f42eff1c0abee01264629e1b3c

committer: David Burns <david.burns@theautomatedtester.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7f8b68818a34ae8125d1b328f8649e2cc6bc3d8f
2017-01-06 14:22:54 +00:00
Andreas Tolfsen 39be8e97fb webdriver: response: allow window position to be negative (#55)
Fixes https://github.com/mozilla/geckodriver/issues/404.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 06a19e89431fcb7aa945d892248dafafa3a7f5fb

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8bddf6ae7cbd9204212db638b1bcdfad729cb038
2017-01-03 17:13:03 +00:00
Maja Frydrychowicz dc52b1dde3 webdriver: Bump version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4bc8fd1df620edfa71fc71a341a22771c13bbac4

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a0df5f5180a4b495752dd8abb7eab6fb521f2404
2017-01-03 15:11:53 +00:00
Maja Frydrychowicz e7ba9ad646 webdriver: Send 'keyDown' instead of 'keyUp' for keyDown
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 19e6d591aa6bda54a05a13491d28d776f1fe7421

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c61b2a24a55ac340395a5a64ebe92f515e70bfcb
2017-01-03 15:11:53 +00:00
James Graham fa0b77098a webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 277f3d6c9c6cf5e35037375677439b6088963a79

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 160123f78f4cab191b7e7886d6f2caefa648d1e5
2016-12-07 21:20:26 -10:00
jgraham 5381e29057 webdriver: Add support for the actions API. (#53)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4f48d52bbef3a6f7a1bf13a740554cedd027f853

committer: James Graham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 2b72e1ca506c8882e6ec372e791edd0a3a84ba1c
2016-12-07 20:35:41 -10:00
Jacob Kiesel 724d46a277 webdriver: Help googlers (#54)
Provides info I was looking for when this came up on Google.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: a7986df7f2db19b1f648d09a5a6a884afe25369b

committer: James Graham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7cd3060dfc35f13aa98aa68b6091e6d1ead0cdc4
2016-12-07 20:35:41 -10:00
James Graham e43b5aade0 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f19c84e93de298b271eadea0d7a57ef0b7f46c5c

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 398bca535497b7a903f270ef989df54abc68b399
2016-11-22 18:46:48 +00:00
James Graham 7d686fb829 webdriver: Merge pull request #52 from mozilla/status_no_session
Allow calling status command without a session being started

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4e67bbcf26413c732a43952566c9ec036fa3377e

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : fd2a688dd22b945442617110553fdadf95cc524e
2016-11-22 19:37:45 +01:00
Andreas Tolfsen 8432984609 webdriver: command, httpapi: add Get Timeouts command (#50)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 89f4b25630be330776ec06b7812015215a647ba4

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 738a220511f8e648e9882f3db62dcc0e82e27294
2016-11-17 18:18:27 +00:00
Vangelis Katsikaros 95b5ed75fc webdriver: Merge pull request #49 from vkatsikaros/286/allow_status_without_sessionid
Allow command Status without session id

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f36bdfc86217c0c694b4d42aba629697351a8368

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8c795dc7a3f7a3fc0289d585f0d7fbd372080b57
2016-11-10 17:17:32 +00:00
Corey Farwell a30c9e57ff webdriver: Don't require ownership in param if we don't need it. (#47)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 77779ccf3a00d34c0c4a66f80a4fbe195e7e401e

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 74518ecf0c0e635d9c489395b9f34a623342388f
2016-11-01 07:00:18 +00:00
Corey Farwell 93a79bc976 webdriver: Init README.md with link to docs. (#48)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: ff074f4dfd5d3d3ea85d40eef3345b9c3658a2f2

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8632772955c8987df470866abdb0ea6317c5fc53
2016-11-01 06:59:27 +00:00
AutomatedTester 123a025957 webdriver: Merge pull request #46 from AutomatedTester/master
Add TakeElementScreenshot

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2120179eefcc5b33afbbea9c3974b9c0f914a20e

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4e29b2423bd00d9cdbd2e165f6198625b20c93a5
2016-10-31 22:24:10 +00:00
Andreas Tolfsen e69951fe6a webdriver: command, httpapi: rename Close to CloseWindow (#44)
Close Window is the official name of the command for closing windows.
I believe it used to be called just Close some iterations ago.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: fa6961c34db424e98259f3d392dcba07d1e87695

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d40bed60186c6e95e9212fe07df2cc8a57274122
2016-10-24 17:46:33 +01:00
Vangelis Katsikaros cbdd225f39 webdriver: Merge branch 'command-status-rebased'
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f0e19ac2794a7602cde640d0ac49ffd69e220a0c

committer: Andreas Tolfsen <ato@mozilla.com>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a6df767a0ff388eeac7a4a82d33860ac182227d2
2016-10-24 17:25:44 +01:00
James Graham 20448cc3a0 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 05df219962a29c91726b156e32e457c2ca438971

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 6fb4c877a0433d9d622c3e2fe30834745a29be9f
2016-09-29 15:22:32 +01:00
David Burns 3936278f99 webdriver: Align Send Alert Text To use same properties as Element Send Keys (#39)
Instead of Send Alert Text using 'text' it now uses 'value' allowing
us to simplify the parameter checking.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: a0240f01f13b8e7e8fcc4cc3b0929675e9e3297c

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 337e13ac8c2f968fae708ccf92829381d107fd50
2016-09-29 14:22:02 +01:00
Andreas Tolfsen 9888a6bbb3 webdriver: Add Get Window Position and Set Window Position commands (#37)
* add Get Window Position and Set Window Position commands

Commands are added to the WebDriver specification in
https://github.com/w3c/webdriver/pull/307.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: d7f04858a9e5dd55dc193e6f9b8c2ea708057a83

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d0a024b5cc7ee9f2a3af218b9ead9ab7ef8f7c7e
2016-09-26 09:04:09 +01:00
Andreas Tolfsen 7f2b15f489 webdriver: Return early using try!() instead of unwrapping errors (#43)
* server: return early using try!() instead of unwrapping errors

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 8d22698d409c62d74963a70461a886b7a16cdc1a

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : ab9c385db54ca55aca09902dc5cf6798c148e720
2016-09-13 16:58:07 +01:00
James Graham 8a47f8db3f webdriver: Update version number to 0.14.0
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 5cb152ecafb011a32c108c6f48cee05fd780d1ad

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : b3b48f067e6e2af23ac92d9614f37f29128b8b42
2016-09-06 15:59:55 +01:00
Andreas Tolfsen 0892da1faa webdriver: server: return hyper::server::Listening so user can access socket addr (#41)
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e23f83e5aebb19acd9566b8dbe69062ae963871d

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 5930fc6037ece06f09bd3c055de2ca416fc17225
2016-09-06 15:19:01 +01:00
David Burns 6490f06cd3 webdriver: Correct Error message when starting a second session. Fixes #174 (#40)
This should be throwing a Session Not Created Error as described in
http://w3c.github.io/webdriver/webdriver-spec.html#new-session step 2

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e9554ddcac3d2b4f66eb606f44ad715b7c003a57

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : e70780aeabffaf4f4324eff7edb15352c42a108a
2016-08-11 23:27:36 +01:00
James Graham a3a9cfada3 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: aeb46caa74f1c467f1f9283d5a299f0fc1b46bbd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c3702dc93abdb029f30ba016f2ed6545bfdbcaf8
2016-08-05 15:29:38 +01:00
James Graham f8ecbbad14 webdriver: Merge pull request #38 from jgraham/jgraham/remove_capabilities
Add ability to consume capabilities.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 03bb9a05d6d2f1c5d2ede4ca479b2a73fec27e85

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f981a85f8f0d8dfbfaa92ab387fcdc6bdc988f08
2016-07-22 17:06:53 +01:00
James Graham 1bac3afed9 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 80dfe76b3b211801f76efe33b0b6e443c3590047

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d68c65e0fac689232bc809a435d8a2a1b49969af
2016-06-22 14:52:36 +01:00
David Burns a9e224c216 webdriver: Add GetElementProperty functionality (#36)
* Add GetElementProperty functionality

This allows to get the value of properties of WebElements and adds
symmetry to GetElementAttribute

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 6c195c9d18b28f45b89375d9a8e8eaa4ab3937c2

committer: jgraham <james@hoppipolla.co.uk>

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : be926b3f3d06a5fdd4b25b5127ee4adb198323d1
2016-06-22 12:06:38 +01:00
James Graham 22f17f6a2f webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7f0a72854a87d17e6d1abff15526dde721536fcb

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : dd80ba2d6e7d2dbea0ed71365d948dd913b884df
2016-06-07 17:36:14 +01:00
Andreas Tolfsen 359585e809 webdriver: Merge pull request #35 from andreastt/cookie-no-secure
disable default feature cookie/secure as to not depend on openssl

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 0f049f38035fe4be454856027c9c07fc1855b90f

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : aa8a03bf3ca2d1cd16b749b9da5b1a516165b384
2016-06-07 16:52:44 +01:00
James Graham 2ac961e819 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2bafff22012b13ba75f3f8ada3408bd44429a675

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0208107b379cbb1dfd657faacf0fe4410824f96c
2016-06-01 22:52:34 +01:00
James Graham 876df65d1a webdriver: Merge pull request #34 from jgraham/capabilities_to_json
Implement to_json for NewSessionParameters

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f421d9b519810294c5d477dffe8c61e19c89040b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 071e474f2595c3f49ecd6d8c27451989d088165f
2016-06-01 15:29:30 +01:00
Daniel Robertson f83aeeee5a webdriver: Merge pull request #33 from danlrobertson/impl_serialize_for_cookie
Implement Into<cookie::Cookie> for Cookie

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2ee8645d6f5088c6d4b6bc8ad46466e290105418

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : febdc4ffa784e71e23b58acac879b148ba4e98fb
2016-06-01 09:44:27 +01:00
James Graham e53ef6893c webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f3b08dcfa71ee10c296c806128b973ce13f9331b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 6f84d3d032bbb0935109bd3e7030c9b8c15f9636
2016-05-27 15:46:20 +01:00
James Graham fb103d3ae7 webdriver: Add From<T> for WebElement where T: Into<String>
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: edae38aa835e2ba5c40c819ae47d798ee08cac1e

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0aa2315e452fa9d925efbc82a26798db24b15312
2016-05-27 15:46:20 +01:00
James Graham fd83420423 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e22a79039ee04cf3d040136ca58f2e354c0a3c56

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d0304152821b8fab808393607f1da8ddf04295b3
2016-05-27 15:46:20 +01:00
Andreas Tolfsen 2fc0964252 webdriver: Merge pull request #32 from andreastt/remove-marionette-bits
marionette_bits: remove

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: fd7c3e5b611d790822eaf223cb0eb1fcf03ae030

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0db58cc63a3c6f3baa4a7d48821066eda5efccd1
2016-05-25 11:31:29 +01:00
James Graham 3518518a3f webdriver: Merge pull request #30 from jgraham/new_session_capabilities
Add support for capabilites in New Session command

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: a47ba3d93ab667259c839df4e5d11bef778455a4

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : cf6c3e18413f6555b14a9d95b193e05edb3529f8
2016-05-23 14:07:57 +01:00
Daniel Robertson 88c8349358 webdriver: Merge pull request #29 from danlrobertson/expiry
AddCookieParameters expiry should accept a date

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 86372d85c7bbf3e3f2520994b72a77f0c9eb23b4

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : e7c6ca5723acca02248c76c6a0364c4ec20502be
2016-04-27 13:55:48 +01:00
James Graham 67d5b3bb0d webdriver: Update to latest hyper
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2985c3aab9d7d1bf45a5ab474186257a44832a72

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4d2c38a85b6e82aec266977cc98cb94c21dc9d63
2016-04-22 13:45:12 +01:00
James Graham 8a6d991dfd webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b0be5129961161c6678b0e5398569ee9342f40ca

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 89221ca6faceccfadf5511e6822e6d0b4856c90b
2016-04-04 16:27:57 +01:00
James Graham 9658adaf3f webdriver: Merge pull request #27 from jgraham/travis
Add travis CI support.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 63a82d36d2783128665612e41faf5b150eb3dbf8

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8dae95ce9c85bfc09fd340f9e74c58fdec359e5d
2016-04-04 13:04:07 +01:00
Ms2ger 8ad0f251b8 webdriver: Merge pull request #26 from Ms2ger/cleanup
Various cleanup.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 338dcf0716188d3fa89ba2062bb4cf14db660e22

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 153d50bc115a597a019b517a87953cb12bceec92
2016-04-04 12:52:00 +01:00
Daniel Robertson c21a98c0c7 webdriver: Merge pull request #25 from danlrobertson/nullable
Add extensions `Nullable` and change `Date`s data visibility to pub

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 16b0099c256b561fd86ba676b68c674ca63b0133

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c498dc3c15db17f4cc68bc49e1b3b0052414f333
2016-03-27 17:30:04 +01:00
Anthony Ramine cfc829302d webdriver: Merge pull request #24 from nox/hyper
Bump hyper to 0.8

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e70a5aac55ff308f5f7e5417da1caf5115da4d23

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 851a31ba449954ebec5a9c576ce5100b2d37ee10
2016-03-15 00:06:04 +00:00
James Graham 8672096066 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 8196cecc1ae821a72f0423d631bca2c60c7901be

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f89e8818901306ccce18b2bb39ddcbc19258827e
2016-03-11 11:19:55 +00:00
James Graham 520a2c9445 webdriver: Squash a warning.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4e2063ef859cae548eedc853f3ff84cec00a3961

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 825555d49a10b54534c80839b4b7ff7fdf0235b1
2016-03-07 17:08:16 +00:00
AutomatedTester 1f8db933c6 webdriver: Merge pull request #21 from AutomatedTester/get_page_source
Add in endpoint for GetPageSource

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 04ea4331c409f6925faba9dbc41a44dbcc04e7a2

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0b8235e5120986563dad16065cd7885ad223a709
2016-01-19 15:29:04 +00:00
AutomatedTester 0b7afbf187 webdriver: Merge pull request #22 from AutomatedTester/alert_parameter
Update parameter being used in alert sendKeys

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 875ac848675d72d09d2b9b20ce2fcd4755090131

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 6cbfb999390d1473cb0d5eb53bbc30dbb4c4794e
2016-01-19 15:27:48 +00:00
Andreas Tolfsen 5f868a4819 webdriver: Merge pull request #14 from andreastt/derive_debug
Derive Debug trait for WebElement and FrameId

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 8300b62283f87b0dfd0158fff4c8bb60d0b8c193

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 8f60e3c9f9ef8bb1f44257cfd84749df16397841
2016-01-18 18:09:15 +00:00
James Graham 4634404448 webdriver: Update version number
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e28b0dca48a884f9a0e2870b3e2186e761c80479

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 515dff21ff8fa6756c8d020afd8e5979a2d89423
2015-12-10 10:51:47 +00:00
James Graham b6be2da9c2 webdriver: Add an implementation of From<DecoderError> for WebDriverError
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 55c965d72180ecde14bd0b039ea339b89d87a20f

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 2cd365cafa393849cf22fc53d10b019f1287a003
2015-12-10 10:51:47 +00:00
Simon Sapin 836ac88838 webdriver: Merge pull request #19 from SimonSapin/hyperup
Update to hyper 0.7

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 9dffcbe409af052788b75c25c368518aab30fd39

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 791bbe99d5aa1a9853f94902251dccc8205aa27f
2015-11-24 20:56:15 +00:00
James Graham 0597c6ffb6 webdriver: Fix set cookie method to match spec.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 110625b02d16f32650475f6a17da404a65d3a28d

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 2c9791ec59031d9519fd77565df901e78f75315d
2015-10-21 16:38:12 +01:00
James Graham 348fbb7d1c webdriver: Update version number
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 96764c8e36fc40cea0ab71bbf550a609fcfa3635

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 97cee010ede740d0d10c79444252c4852b74864d
2015-09-28 22:31:39 +01:00
James Graham d047182a38 webdriver: Rename 'status' field to 'error' to match spec.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 5e1d492f4ee24b740708cfd3a2dd17bda16fa77a

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f964a823e127462ecb07c41a9d425d4a9104a07f
2015-09-28 22:30:33 +01:00
James Graham d1b9b11c33 webdriver: Fix field name for Send Alert Text
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e6aac905416c3b55b0b9c6f82b347366be5e9301

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 567c9937d5cce2327656f334f461f3b6b7523f8a
2015-09-09 15:55:19 +01:00
James Graham 95f78fca50 webdriver: Implement From<IoError> for WebDriverError
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: abeeca388e12c3f3d2dcf55a6dc48333aa233c46

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4be820d2adcd92ef6c9c2328fc14ef680997b543
2015-09-09 15:09:56 +01:00
James Graham 9cd29f8889 webdriver: Bump version number for 0.3 release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 6ad51b44a10bd9e9f2f5532dbeb7f917a662a226

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : b5b629c8fa073d33b8edc0f837d83c21c148241a
2015-09-04 18:00:16 +01:00
James Graham 0095aaa1b2 webdriver: Merge pull request #18 from jgraham/jgraham/extensions
Implement support for extension commands.

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 1b5007fbea3caf302cb215dbc2ad21e0402344eb

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : da93be69d6f15bb92f6df045071460b2245f1723
2015-09-04 18:51:41 +02:00
Corey Farwell fca52a371d webdriver: Merge pull request #17 from frewsxcv/rfc-1214
Fix nightly warnings related to lifetimes

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 80b3fdf3f7412066268e00df25087200cbb47cca

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3f8dd7031da8cdbc1f43d0ae81653b1f0abf064b
2015-09-02 15:11:09 +02:00
AutomatedTester cb13502535 webdriver: Merge pull request #15 from AutomatedTester/update_endpoints
Update the HTTP Endpoints to match the current specification

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7fd0a2aec5722f28a319595cba173e95367b99a7

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d82f2f8f4a7aef9cc0ff8d551413deba18c26d5c
2015-08-28 16:31:29 +02:00
James Graham 17b87c433c webdriver: Don't log response at error level
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7cdaa70fdea1600fd22a7daddf0dc890e9e91bf4

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 92f7a8f4d440309055eba07ecd09f4b023afccb4
2015-08-27 20:07:23 +01:00
James Graham 23dcd65fd0 webdriver: Send JSON header with response.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 5008a3d04e30a1080f747f271febb04b19ee824c

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : b2d1dcd1d750e559dcaba04e0e89e328d5ace2d6
2015-08-13 00:07:53 +01:00
James Graham e6abd66a96 webdriver: Update version number for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2265894866bea9659c06a7082f2f96cad238ff34

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : aa06f7472f26a96a0d3d9288ad9a03a1c13a9969
2015-07-23 00:11:06 +01:00
AutomatedTester 901769579a webdriver: Merge pull request #13 from AutomatedTester/hyper-no-default
Set hyper to not build with default-features

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 3d9b4578a425108357cb33012ec14597b9656377

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a203d85f369901afe62dcf2fad5252f9e88290b1
2015-07-22 23:59:28 +01:00
Simon Sapin 86abf0e314 webdriver: Merge pull request #12 from SimonSapin/patch-1
Upgrade hyper

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: caf906e67d818f2db5d4f31b08abb0fee561ec43

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d267ce5830f9deb20372b76d0c6f16943b1f48e6
2015-07-11 00:22:18 +01:00
Manish Goregaokar 2aa8128113 webdriver: Merge pull request #11 from Manishearth/patch-1
Update Cargo.toml

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b9cf2b1f65d4f01f593de29a581518feeb6b5a64

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 079c32fa6ea86df4f8889499e4549ce593c2c02d
2015-06-02 12:47:53 +01:00
James Graham 0929ce2517 webdriver: Update version number for 0.2 release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 038c1828c5dd4ab7b8f70b3d859c0ff988e6ca25

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 453e02212547b6dd2cf7d9749b98128cb634d81b
2015-05-20 18:20:51 +01:00
James Graham 02ee330730 webdriver: Fix error code for the case where a session is already created
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 7623fabea3df5ecde77a053e4bb702c5c6fab13b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : ecf6a118ffa25e8bd3991db7530ce9be78734c97
2015-05-20 12:07:07 +01:00
James Graham 88e55e05ea webdriver: Support errors that are fatal i.e. should result in session teardown.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 043d4007dba6bca256a7e8f838ad1ef12a7a8930

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7a88e9b8883b572919ea2f2c672e603b2af90176
2015-05-20 12:06:41 +01:00
James Graham b9db2f680d webdriver: Upgrade depenencies for 1.0
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: d40f0d479357d1af4a569ea1a566342c8f48bf71

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : ff90f951852e8c2f823b3b416966ec97fcb1b1c0
2015-05-16 00:00:10 +01:00
Simon Sapin f6b1cbf7bb webdriver: Upgrade Hyper
https://github.com/hyperium/hyper/blob/master/CHANGELOG.md#v040-2015-05-07

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: a5549ac6094df6c347f07ed4d412b7a685abce25

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c97f9d04c5d0bb79896ceefb08ed2010e36c2d59
2015-05-12 16:09:49 +02:00
James Graham 5c176474e2 webdriver: Add support for getActiveElement
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4065017191f1054b62f8c17c2b07c412111e0022

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 81bbd1a168fe1375ced13eb379853f48253cdc12
2015-05-08 19:37:51 +01:00
James Graham b97307771f webdriver: Make response fields public and cookie maxAge nullable.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: c2038b4195ee8cd982079cc48d6a9d039f59f1fb

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : f52764ae19d0af506b37436f96e6a0160503ddec
2015-05-06 14:58:27 +01:00
James Graham 65542a3e46 webdriver: Add support for GetCookies, DeleteCookies and DeleteCookie commands
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: be7d51eff155eeb37ae841836a47d37df6730f90

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 24bcf7373c8f8be996f5d1c8c2c735dd5c4976b7
2015-05-01 16:58:01 +01:00
James Graham 52fd12fbf2 webdriver: Remove redundant license-file key from Cargo.toml
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 3c228e2142f881bcdcf49210776b5ac995fc0808

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : e97e246b90f27f3910e6b17799f44c5f78d801ab
2015-05-01 15:11:47 +01:00
James Graham fd874a1830 webdriver: Name http server thread for debugging.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: b74083e44bb76cdafc1758849618b16161c2c20d

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 698c098280c8b63c06e1a2af1b2b9d40aec76b4b
2015-05-01 15:11:09 +01:00
James Graham 34dadf639b webdriver: Fix TakeScreenshot to not expect an element parameter that isn't supplied.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 432e6000646be7c6abe472c324a5c52469410824

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4c012a69a03d44de851684ad6438a9cf0b180ef7
2015-05-01 15:10:20 +01:00
James Graham 28372ef417 webdriver: Make all parameters fields public
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 66547888f47bae7e938a92af4586276479343216

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3c0a8bb410764a965c370c121d57b5e815b960e5
2015-04-24 14:49:49 +01:00
James Graham 709dd47b7c webdriver: Update package metadata for release
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 24cd5710008c906dc1132c9db84cd12cefb1bdf9

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 5377ea1ed9f2141b9750d1561a50b0cf88e7b4f4
2015-04-09 16:20:51 +01:00
James Graham 692e444458 webdriver: fixup! Update for beta.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: fe44cf58342dafbdb8ea8a9cd0f9826a6d5d4e78

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 4561e53671b94836ca6bb733d2cbc73f8770459e
2015-04-08 19:54:16 +01:00
James Graham 90878cdf83 webdriver: Update for beta.
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 435bc91f1297b957798d52bf0f445cab754fc186

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 9e1c3868846f5f119caa7f302dbbb7bd24fefdc1
2015-04-08 18:53:24 +01:00
James Graham ef830930f6 webdriver: Update dependencies
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4f543416a269b9d0d7ee5332db489768c2a769dd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 1876632a2b01afd5cfac8089cfce0a8cb4693ac8
2015-04-08 15:58:43 +01:00
James Graham 963db6d357 webdriver: Make url on GetParameters public
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 3f6ed4f167291512c0e853de7be80fa4c197f64e

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 54957a4fbe58dad2078b7b56053c4c3ecf0698b5
2015-04-08 00:25:35 +01:00
James Graham 53a3d2d86a webdriver: Use the same rustc_serialize as Servo
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: e355e7dc96ffd4ac39c8e09491b159fbb798b2cb

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : d6b9810b4562a2654e76d3262e93b14ad7d80a29
2015-04-08 00:25:16 +01:00
James Graham d2b2d35299 webdriver: Remove Cargo.lock file
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 252f2fb4a9366b339dae41bdb6e804202e3779e8

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : c9fa38a7db07753953c99b9f89637bc3b6b4b027
2015-04-08 00:24:55 +01:00
Josh Matthews 48aa06b98a webdriver: Merge pull request #6 from jdm/servo
Update to compile with rustc d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/ru...

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 906806d51783b5caad89432bf8ce008f2f4968fc

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a1ed74dee3765821147fec6cf622094c15d31e4f
2015-04-03 14:14:02 +01:00
AutomatedTester 0d61b12035 webdriver: Merge pull request #4 from AutomatedTester/rect
Update getElementRect to expect floats to be returned to it

Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 6c891a20996ed866621eecae5ae29230f22f95fd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 9bda711ae7a6b7b94d70e35d9c5705ed55eb40a6
2015-03-07 12:41:53 +00:00
James Graham 07f2922c5f webdriver: Fix parsing of FrameIds with Elements
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: f0168a1510f08990dc5394050adade86dc548944

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : a62404c8c6d39bb7d4cf79f3f79d4f53da98af31
2015-03-06 14:50:25 +00:00
James Graham fe1a9ec995 webdriver: Fix timeout datatype and script serialization
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 520e4df806254528ff78625a86b18b61c55d7456

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0b8bc9cb3c5054c4c3dfe201d1a8c7018052d37a
2015-03-06 10:37:08 +00:00
James Graham 2d64e76f23 webdriver: Fix some bugs found by the selenium testsuite
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 000cf556c4f2087ab650da2f9291aeef432ffaa0

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 3932e94fe13b4330c50e79a0d8fd99d58c3d1447
2015-03-04 14:34:54 +00:00
James Graham d98b0d7c1b webdriver: Add support for finding elements in subtrees
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 17d550f0f47f42d64d367c72d4fd32aadedda8c4

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 0824a89b5572290fdf5b79f2a5ac1a286ccd2445
2015-03-02 15:53:30 +00:00
James Graham 54ce9dae7a webdriver: Fix conversion of SendKeys input
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 65d155c9b4a3928445e4ba9f2ffbcb7853a57b2b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 519c5b34283c02658cb8dc0d4de75610d61d88ac
2015-03-02 12:38:37 +00:00
AutomatedTester dcc69ff6af webdriver: When calling sendKeys, the client will send through a Vector so we should treat it accordingly
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 42d4821c576262dd53e5a1c30067a0b3e6f159be

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 1edbc5d5e90fd88b74289f7ba12580f5157a0d83
2015-02-27 00:26:26 +00:00
AutomatedTester 558b9ca50a webdriver: Update endpoint for sendKeys
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 4a953e31120a1c00463b7886b39d171408e6aaea

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 943ea44f1a59a4eaa09d3968bd659e50cd79c7ac
2015-02-27 00:25:37 +00:00
James Graham 25a0f7eb4b webdriver: Make build work with 1.0a2
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 8bf036c35e4893bf523c6f8e2041a8a7eeb3e89b

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 750810fe1d35b379a83a286bb1716db10990738c
2015-02-23 19:19:49 +00:00
James Graham 4c2b0e611c webdriver: Fixup error handling
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 1592a9150589ddab44e36aca2b241929de0c6e68

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 31b7ebbfbd73871424c2a9411fb684209c681392
2015-02-23 13:52:41 +00:00
James Graham 150eac382b webdriver: Better error checking of request body
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 62d258b1d41997e531618c82cdeab3436525c2c7

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 7a835fbb883119b60f02e6325dbfa95d3dc59262
2015-02-16 16:58:09 +00:00
James Graham 7f30906eda webdriver: Fix versions of dependencies to build with 1.0.0-alpha
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 2d85826105886a478114a9ea7b2914bef91ba014

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 1455612194a1d8f96b81cb1d6e3a94f1718bd5d8
2015-02-09 23:04:41 +00:00
James Graham 474826b2bd webdriver: Make common public
Source-Repo: https://github.com/mozilla/webdriver-rust
Source-Revision: 162db643b3e67ad5a85331d0dd08b34887f7ddcd

--HG--
extra : subtree_source : http%3A//tristan.corp.lon2.mozilla.com%3A8000
extra : subtree_revision : 36b1543bd4ab9e24ef540e266782d270d4971365
2015-01-16 18:58:03 +00:00