Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Tolfsen <ato@mozilla.com>2016-09-30 19:05:06 +0300
committerjgraham <james@hoppipolla.co.uk>2016-10-05 18:52:07 +0300
commit312be489f34f08b6f7735c18b0f5ca9c2dbc66e6 (patch)
tree537607c3b37637e42004bbbda11b985fb0ba9f2b /CHANGES.md
parent1da47fc9b050f8243e28f55bdd2200b43fee8f32 (diff)
rename firefoxOptions to moz:firefoxOptions
See https://github.com/w3c/webdriver/pull/343 for further details on extension capabilities. Fixes #250.
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 8c62cb5..d4d1884 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -7,14 +7,14 @@ All notable changes to this program is documented in this file.
### Added
- Introduced continous integration builds for Windows 32-bit binaries
- Added new extension commands for finding an element’s anonymous children and querying its attributes; accessible through the `/session/{sessionId}/moz/xbl/{elementId}/anonymous_children` to return all anonymous children and `/session/{sessionId}/moz/xbl/{elementId}/anonymous_by_attribute` to return an anonymous element by a name and attribute query
-- Introduced a `firefoxOptions` capability to customise a Firefox session:
+- Introduced a `moz:firefoxOptions` capability to customise a Firefox session:
- The `binary`, `args`, and `profile` entries on this dictionary is equivalent to the old `firefox_binary`, `firefox_args`, and `firefox_profile` capabilities, which have now all been removed
- The `log` capability takes a dictionary such as `{log: "trace"}` to enable trace level verbosity in Gecko
- The `prefs` capability lets you define Firefox preferences through capabilities
- Re-introduced the `--webdriver-port` argument as a hidden alias to `--port`
### Changed
-- `firefox_binary`, `firefox_args`, and `firefox_profile` capabilities removed in favour of the `firefoxOptions` dictionary detailed above and in the README
+- `firefox_binary`, `firefox_args`, and `firefox_profile` capabilities removed in favour of the `moz:firefoxOptions` dictionary detailed above and in the README
- Removed `--no-e10s` flag, and geckodriver will from now rely on the Firefox default multiprocessing settings (override using preferences)
- Disable pop-up blocker in the default profile by @juangj
- Changed Rust compiler version to 1.12 (beta) temporarily because of [trouble linking Musl binaries](https://github.com/rust-lang/rust/issues/34978)