1
0

Changes 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. Revision history for Selenium-Remote-Driver
  2. 0.11 8-16-2011
  3. This is quite a large list for this release and will be
  4. the first cpan release. The later releases will hopefully
  5. happen often and won't be quite as large.
  6. - subroutine calls carp when an error occurs or when
  7. an element cannot be found
  8. - if an element cannot be found, carp should tell you
  9. which line in your local script where the element was
  10. not found
  11. - added the following driver api calls
  12. click,double_click,button_down,button_up,close,status,
  13. send_modifier,execute_script,execute_async_script
  14. - fixed the following api calls
  15. refresh,delete_cookie_named
  16. - $element->get_value is deprecated...
  17. subroutine now points to get_attribute('value')
  18. - added the following element api calls
  19. describe
  20. - added initial IDE plugin for the Selenium-IDE
  21. (this is based off the Rspec webdriver ide plugin)
  22. - Added "extra_capabilities" named argument to the driver
  23. - make send_keys accept one or more string argument
  24. - added javascript method to driver
  25. (thanks Phil Kania!)
  26. - fixed issue: check for empty string before trying to decode
  27. - fixed issue: if script using the module ever forked, the
  28. driver would call quit whenever that fork was closed
  29. - fixed issue: Marked as deprecated: WebElement::set_selected
  30. and WebElement::toggle
  31. - fixed issue: global $driver variable in WebElement caused the
  32. remote connection to be destroyed before the driver was able
  33. to call quit()
  34. - fixed issues:
  35. - improper definition of setImplicitWaitTimeout
  36. - Driver.pm: missing 'css' entry in FINDERS
  37. - Driver.pm::find_elements: set up $using correctly
  38. (thanks Phil Mitchell!)
  39. 0.10 5-2-2010
  40. - Implemented support for JSON wire protocol as of a4 release of
  41. Selenium 2.0.
  42. - The main Driver & WebElement modules are implemented & functional.
  43. - Added unit tests for Driver. As of this moment only live testing is
  44. supported as the server itself is alpha & mocking its behavior doesn't
  45. help our cause.
  46. - Added POD for Driver & WebElement
  47. 0.01 2-21-2010
  48. First version, released on an unsuspecting world.