Security update for permissions_by_term
[yaffs-website] / vendor / behat / mink-selenium2-driver / CHANGELOG.md
1 1.3.1 / 2016-03-05
2 ==================
3
4 Bug fixes:
5
6 * Fixed the handling of cookies with semicolon in the value
7
8 Testsuite:
9
10 * Add testing on PHP 7
11
12 1.3.0 / 2015-09-21
13 ==================
14
15 New features:
16
17 * Updated the driver to use findElementsXpaths for Mink 1.7 and forward compatibility with Mink 2
18
19 Testsuite:
20
21 * Fixed the window name test for the chrome driver
22 * Add testing on PhantomJS 2
23
24 Misc:
25
26 * Updated the repository structure to PSR-4
27
28 1.2.0 / 2014-09-29
29 ==================
30
31 BC break:
32
33 * Changed the behavior of `getValue` for checkboxes according to the BC break in Mink 1.6
34
35 New features:
36
37 * Added the support of the `chromeOptions` argument in capabilities
38 * Added the support of select elements in `setValue`
39 * Added the support of checbox and radio elements in `setValue`
40 * Added the support of HTML5 input types in `setValue` (for those supported by WebDriver itself)
41 * Added `getWebDriverSessionId` to get the WebDriver session id
42 * Added a way to configure the webdriver timeouts
43 * Implemented `getOuterHtml`
44 * Implemented `getWindowNames` and `getWindowName`
45 * Implemented `maximizeWindow`
46 * Implemented `submitForm`
47 * Implemented `isSelected`
48
49 Bug fixes:
50
51 * Fixed the selection of options for radio groups
52 * Fixed `getValue` for radio groups
53 * Fixed the selection of options for multiple selects to ensure the change event is triggered only once
54 * Fixed mouse interactions to use the webDriver API rather than using JS and emulating events
55 * Fixed duplicate change events being triggered when setting the value
56 * Fixed the code to throw exceptions for invalid usages of the driver
57 * Fixed the implementation of `mouseOver`
58 * Fixed `evaluateScript` and `executeScript` to support all syntaxes required by the Mink API
59 * Fixed the retrieval of HTML attributes in `getAttribute`
60 * Fixed form interactions to use the webDriver API rather than using JS and emulating change events
61 * Fixed the clearing of the value when the caret is at the beginning of the field in `setValue`
62
63 Testing:
64
65 * Updated the testsuite to use the new Mink 1.6 driver testsuite
66 * Added testing on HHVM