Changes 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. Revision history for Selenium-Remote-Driver
  2. 0.17 6-4-2013
  3. - Second build with DistZilla, now with distzilla branch merged into master.
  4. - Changelog updated
  5. - Handle non-json responses better
  6. - Small bugs fixed
  7. 0.16 4-11-2013
  8. - New maintainer and beginning CPAN artist: Charles Howes <chowes@cpan.org>
  9. - First build with DistZilla (using distzilla branch from git repository, somewhat stale)
  10. 0.15 3-12-2012
  11. - execute_script() can return web elements for data structures
  12. (arrays for .e.g.).
  13. - The error messages are now a little more descriptive in cases of
  14. "UNKNOWN ERROR".
  15. - Fixed the carp 1.25 related issue in tests.
  16. - Added support for proxy configuration.
  17. 0.14 3-1-2012
  18. - Added method send_keys_to_active_element() in driver
  19. - Added method get_sessions()
  20. - Fixed issue #11
  21. - Fixed documentation from issue #21
  22. 0.13 2-8-2012
  23. - Added support for key events in send_keys() method
  24. - Added methods to get/set window position/size
  25. - get_active_element() now returns a WebElement object
  26. - Bunch of bug fixes & documentation fixes.
  27. 0.12 9-20-2011
  28. - Tests now use mock recordings for each major os
  29. this will be expanded to include different versions
  30. of selenium
  31. - added module metadata so bug tracking and repository
  32. info will appear on metacpan (Thanks Tom Hukins!)
  33. - Fixed issue with find_child_element(s) which caused
  34. search methods which had 2+ words to fail
  35. ("css selector","class name","tag name", etc)
  36. 0.11 8-16-2011
  37. This is quite a large list for this release and will be
  38. the first cpan release. The later releases will hopefully
  39. happen often and won't be quite as large.
  40. - subroutine calls carp when an error occurs or when
  41. an element cannot be found
  42. - if an element cannot be found, carp should tell you
  43. which line in your local script where the element was
  44. not found
  45. - added the following driver api calls
  46. click,double_click,button_down,button_up,close,status,
  47. send_modifier,execute_script,execute_async_script
  48. - fixed the following api calls
  49. refresh,delete_cookie_named
  50. - $element->get_value is deprecated...
  51. subroutine now points to get_attribute('value')
  52. - added the following element api calls
  53. describe
  54. - added initial IDE plugin for the Selenium-IDE
  55. (this is based off the Rspec webdriver ide plugin)
  56. - Added "extra_capabilities" named argument to the driver
  57. - make send_keys accept one or more string argument
  58. - added javascript method to driver
  59. (thanks Phil Kania!)
  60. - fixed issue: check for empty string before trying to decode
  61. - fixed issue: if script using the module ever forked, the
  62. driver would call quit whenever that fork was closed
  63. - fixed issue: Marked as deprecated: WebElement::set_selected
  64. and WebElement::toggle
  65. - fixed issue: global $driver variable in WebElement caused the
  66. remote connection to be destroyed before the driver was able
  67. to call quit()
  68. - fixed issues:
  69. - improper definition of setImplicitWaitTimeout
  70. - Driver.pm: missing 'css' entry in FINDERS
  71. - Driver.pm::find_elements: set up $using correctly
  72. (thanks Phil Mitchell!)
  73. 0.10 5-2-2010
  74. - Implemented support for JSON wire protocol as of a4 release of
  75. Selenium 2.0.
  76. - The main Driver & WebElement modules are implemented & functional.
  77. - Added unit tests for Driver. As of this moment only live testing is
  78. supported as the server itself is alpha & mocking its behavior doesn't
  79. help our cause.
  80. - Added POD for Driver & WebElement
  81. 0.01 2-21-2010
  82. First version, released on an unsuspecting world.