The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for AnyEvent::WebDriver

TODO: investigate modifer key usage/special key usage in send_element_keys
TODO: geckodriver/chromedriver autostart classes
TODO: enforce duration values ot be integers
TODO: more move/source/duration examples

1.2  Sat Mar 28 18:05:59 CET 2020
	- INCOMPATIBLE CHANGE: screenshots are now decoded and are no longer
          in base64 (or data urls), but a biary png image.
        - INCOMPAITBLE CHANGE: this module now uses the second key table
          from the spec which contains shifted variants of the keys, which
          allows for shifted characters and to distinguish between e.g.
          left and right Alt keys, but causes some key names to change.
	- docfix: ->move does not have a button argument.
        - docfix: keyUp/keyDown are really key_up and key_down.
	- ->move now truncates coordinates to integers.
	- clarify documentation here and there.
        - added untested print method from webdriver2 draft.
        - parse the special keys at runtime, only when required, directly.
          from a pasted copy form the spec, to ease maintenance and reduce
          initial memory usage.

1.01 Fri Sep 27 05:30:40 CEST 2019
	- autodelete property was ignored.
        - document that perl bugs prevent autodelete when exiting.
        - make delete_session idempotent and safe to always call.

1.0  Fri Sep 20 22:15:07 CEST 2019
	- small protocol fixes.
        - chromdriver 77 can finally create sessions, but might still not
          work.
        - add chrome capabilities example, because the goog:chromeOptions
          are basiclaly undocumented.
	- many small documentation fixes.
	- fix Changes :)

0.91 Tue Sep  4 03:20:56 CEST 2018
	- actions created via Actions objects no longer queue actions
          to execute concurrently.
        - default mouse button to 0 instead of 1.
	- implement ->cancel action (pointerCancel).

0.9 Fri Aug 31 04:44:10 CEST 2018
	- enable persistent connections for non-idempotent requests by default.
        - make "verboser" action example actually more verbose.
	- doc fixes.

0.5 Wed Aug 29 07:54:58 CEST 2018
	- add api stability warning to docs.
	- document ->key method for action lists.
        - implement special key names for ->key method in action lists.
        - implement the ->type convenience function mentioned in the docs.
        - implement some (hopefully) useful locator strategy aliases.
        - implement ->set_sessionm ->save_session, ->load_session method.
	- make JSON::XS optional and require JSON::PP as fallback.
        - fix ->switch_to_window method.
        - fix AUTOLOAD to report the actual method name in case an unknown
          method was called.
        - doc fixes.

0.2 Wed Aug 29 04:17:20 CEST 2018
	- implement a helper API to make it easier to build action lists.
        - drop the concept of element IDs and use the element object everywhere.
	- minor fixes.
	- the webdriver rec has actually been published by now.

0.1 Wed Aug 29 01:31:22 CEST 2018
	- implement request timeout, document future plans
          for timeouts.
        - documentation fixes.
        - JSON::XS wasn't marked as dependency.
        - only call boolean_values if JSON::XS actually supports it.
        - fix some "$wdf"'s that have snaked in.

0    Wed Aug 29 00:55:44 CEST 2018
	- original version, mostly from scratch.