| 1 |
Revision history for AnyEvent::WebDriver |
| 2 |
|
| 3 |
TODO: investigate modifer key usage/special key usage in send_element_keys |
| 4 |
TODO: geckodriver/chromedriver autostart classes |
| 5 |
TODO: enforce duration values ot be integers |
| 6 |
TODO: more move/source/duration examples |
| 7 |
|
| 8 |
- fix some examples (Felix Antonius Wilhelm Ostmann). |
| 9 |
|
| 10 |
1.2 Sat Mar 28 18:05:59 CET 2020 |
| 11 |
- INCOMPATIBLE CHANGE: screenshots are now decoded and are no longer |
| 12 |
in base64 (or data urls), but a biary png image. |
| 13 |
- INCOMPAITBLE CHANGE: this module now uses the second key table |
| 14 |
from the spec which contains shifted variants of the keys, which |
| 15 |
allows for shifted characters and to distinguish between e.g. |
| 16 |
left and right Alt keys, but causes some key names to change. |
| 17 |
- docfix: ->move does not have a button argument. |
| 18 |
- docfix: keyUp/keyDown are really key_up and key_down. |
| 19 |
- ->move now truncates coordinates to integers. |
| 20 |
- clarify documentation here and there. |
| 21 |
- added untested print method from webdriver2 draft. |
| 22 |
- parse the special keys at runtime, only when required, directly. |
| 23 |
from a pasted copy form the spec, to ease maintenance and reduce |
| 24 |
initial memory usage. |
| 25 |
|
| 26 |
1.01 Fri Sep 27 05:30:40 CEST 2019 |
| 27 |
- autodelete property was ignored. |
| 28 |
- document that perl bugs prevent autodelete when exiting. |
| 29 |
- make delete_session idempotent and safe to always call. |
| 30 |
|
| 31 |
1.0 Fri Sep 20 22:15:07 CEST 2019 |
| 32 |
- small protocol fixes. |
| 33 |
- chromdriver 77 can finally create sessions, but might still not |
| 34 |
work. |
| 35 |
- add chrome capabilities example, because the goog:chromeOptions |
| 36 |
are basiclaly undocumented. |
| 37 |
- many small documentation fixes. |
| 38 |
- fix Changes :) |
| 39 |
|
| 40 |
0.91 Tue Sep 4 03:20:56 CEST 2018 |
| 41 |
- actions created via Actions objects no longer queue actions |
| 42 |
to execute concurrently. |
| 43 |
- default mouse button to 0 instead of 1. |
| 44 |
- implement ->cancel action (pointerCancel). |
| 45 |
|
| 46 |
0.9 Fri Aug 31 04:44:10 CEST 2018 |
| 47 |
- enable persistent connections for non-idempotent requests by default. |
| 48 |
- make "verboser" action example actually more verbose. |
| 49 |
- doc fixes. |
| 50 |
|
| 51 |
0.5 Wed Aug 29 07:54:58 CEST 2018 |
| 52 |
- add api stability warning to docs. |
| 53 |
- document ->key method for action lists. |
| 54 |
- implement special key names for ->key method in action lists. |
| 55 |
- implement the ->type convenience function mentioned in the docs. |
| 56 |
- implement some (hopefully) useful locator strategy aliases. |
| 57 |
- implement ->set_sessionm ->save_session, ->load_session method. |
| 58 |
- make JSON::XS optional and require JSON::PP as fallback. |
| 59 |
- fix ->switch_to_window method. |
| 60 |
- fix AUTOLOAD to report the actual method name in case an unknown |
| 61 |
method was called. |
| 62 |
- doc fixes. |
| 63 |
|
| 64 |
0.2 Wed Aug 29 04:17:20 CEST 2018 |
| 65 |
- implement a helper API to make it easier to build action lists. |
| 66 |
- drop the concept of element IDs and use the element object everywhere. |
| 67 |
- minor fixes. |
| 68 |
- the webdriver rec has actually been published by now. |
| 69 |
|
| 70 |
0.1 Wed Aug 29 01:31:22 CEST 2018 |
| 71 |
- implement request timeout, document future plans |
| 72 |
for timeouts. |
| 73 |
- documentation fixes. |
| 74 |
- JSON::XS wasn't marked as dependency. |
| 75 |
- only call boolean_values if JSON::XS actually supports it. |
| 76 |
- fix some "$wdf"'s that have snaked in. |
| 77 |
|
| 78 |
0 Wed Aug 29 00:55:44 CEST 2018 |
| 79 |
- original version, mostly from scratch. |