Changes 3.0 KB

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