Changes 3.5 KB

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