Changes 3.2 KB

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