ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-WebDriver/Changes
Revision: 1.32
Committed: Fri Mar 27 23:55:14 2020 UTC (4 years, 2 months ago) by root
Branch: MAIN
Changes since 1.31: +0 -2 lines
Log Message:
*** empty log message ***

File Contents

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