1
0

Changes 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. Revision history for Selenium-Remote-Driver
  2. 0.1801 4-9-2014
  3. [DOCUMENTATION]
  4. - Using Dist::Zilla & Pod::Weaver to keep the POD as DRY as possible
  5. [BUG FIXES]
  6. - Restore broken proxy functionality - should use the value passed in ->new
  7. - #119 Restore broken find_elements functionality - should return an arrayref or an array
  8. 0.18 3-28-2014
  9. - New maintainer: Daniel Gempesaw <gempesaw@gmail.com>
  10. - Fix failing tests in CPAN distribution!
  11. [THINGS THAT MIGHT BREAK YOUR CODE]
  12. - We now 'croak' instead of returning error strings in a number of
  13. cases where invalid method calls were made. This should make
  14. debugging easier in some cases, and is more aligned with our
  15. documentation which already stated that we would croak on errors.
  16. Still, your code may depend on the old behavior.
  17. https://github.com/aivaturi/Selenium-Remote-Driver/commit/7cdf3dce0fcaa48a883d045368c094351754e85a
  18. - The hover() method on the WebElement has been removed. This is not in the JSON Wire protocol,
  19. and the same functionality is avialable with the Driver object's move_to() method.
  20. https://github.com/aivaturi/Selenium-Remote-Driver/pull/77
  21. [NEW FEATURES]
  22. - Merged Test::WebDriver into this distribution as Test::Selenium::Remote::Driver.
  23. Several updates to it are included since the last release. (Mark Stosberg)
  24. - The existence of most (or all?) key testing methods in
  25. Test::Selenium::Remote::Driver is now documented, rather than leaving it to users
  26. to figure out the magic effects of AUTOLOAD on the methods in the parent
  27. class. (Mark Stosberg)
  28. - Added type_ok() to Test::Selenium::Remote::Driver, similar to the method by the same name
  29. from Test::WWW::Mechanize (Mark Stosberg)
  30. - Added several methods to Test::Selenium::Remote::Driver that allow you to find
  31. an WebElement and test against in a single command. (Mark Stosberg)
  32. The test methods for WebElements include:
  33. type_element_ok - find an element and type into it.
  34. element_text_is - find an element and check the text.
  35. element_value_is - find an element and check the value.
  36. click_element_ok - find an element and click on it.
  37. clear_element_ok - find an element and clear it.
  38. is_element_displayed_ok - find an element and check to see if it's displayed.
  39. is_element_enabled_ok - find an element and check to see if it's enabled.
  40. - Added and started using Test::Selenium::Remote::WebElement. This a
  41. sub-class of Selenium::Remote::WebElement. This allows testing
  42. methods on the "WebElement" object as well as main '$driver' object.
  43. - Added a pause() function, that sleeps for the given number of milliseconds, just like
  44. Test::WWW::Selenium. https://github.com/aivaturi/Selenium-Remote-Driver/issues/60
  45. - new() now accepts a 'default_finder' option to allow you to change the default finder, which
  46. is currently 'xpath'. This will be of interest to those who prefer CSS-style selectors,
  47. such as jQuery uses.
  48. https://github.com/aivaturi/Selenium-Remote-Driver/pull/49
  49. - new() now accepts a 'webelement_class' option to allow you to specify an alternate WebElement class.
  50. This could be used to add testing methods or functionality for WebElements.
  51. - Shortcut methods absorbed from Test::WebDriver into Selenium::Remote::Driver:
  52. get_text() Returns the text for a particular element.
  53. get_body() Returns the text for the whole body.
  54. get_path() Returns the path part of the current URL.
  55. - New short method to save a screenshot to a file: $driver->capture_screenshot($filename).
  56. The name was chosen for compatibility with a WWW::Selenium method of the same name.
  57. - Removed 'get_location()' as an alias in Test::Selenium::Remote::Driver.
  58. Please use the more specific 'get_current_url()' instead.
  59. It's a more specific name that matches the Selenium API method name.
  60. - Adding text checking methods to Test::Selenium::Remote::Driver
  61. # Run regex's against the entire page source
  62. content_like()
  63. content_unlike()
  64. # Run regex's against just the "text" of the page
  65. body_text_like()
  66. body_text_unlike()
  67. # Check page source for strings
  68. content_contains()
  69. content_lacks()
  70. # Check text of page for strings
  71. body_text_contains()
  72. body_text_lacks()
  73. The names are intentionally the same as their Test::WWW::Mechanize
  74. counterparts. However, these methods may take an arrayref of regular
  75. expressions for improved performance when you want to run multiple
  76. tests against the same page.
  77. Normally Selenium::Remote::Driver would make an HTTP request to the
  78. driven browser for each content check. By using an arrayref for
  79. multiple checks of the same page, you can avoid the extra HTTP
  80. requests and speed up your tests. (Mark Stosberg)
  81. [DOCUMENTATION]
  82. - Updated ChangeLog to reflect that debug_on() and debug_off() methods were added in 0.16.
  83. [INTERNALS]
  84. - Switch S::R::D to Moo; this should not have any adverse impacts, as our API is unchanged
  85. - Take advantage of additional Dist::Zilla plugins (travis, commitbuild, autoprereqs, etc)
  86. - MIME::Base64 is now only loaded if it used for a file upload or taking a screenshot.
  87. This will create a minor speed-up for common cases which don't use these features.
  88. - Explained why the code does 'use 5.006; use v5.10.0;', and it's not pretty.
  89. The short version: before perl 5.006, the v-string 'v5.10.0' would not be understood.
  90. The page http://www.dagolden.com/index.php/369/version-numbers-should-be-boring/
  91. explains it in much more detail than I can.
  92. Fortunately, it boils down to this: http://perldoc.perl.org/5.10.0/functions/use.html#use-VERSION
  93. - Added Test::LongString as a dependency to support the new content checking methods.
  94. 0.17 7-13-2013
  95. - Second build with DistZilla, now with distzilla branch merged into master.
  96. - commit db99a00: Dave Rolsky: Fix broken use of =cut
  97. - commit 505232b: Dave Rolsky: Changed indentation of commit 0d78dbe
  98. - commit f042929: Dave Rolsky: Check for content_type not being json
  99. - commit 0e7ad05: Dave Rolsky: Include error message from
  100. server when we can't create a session
  101. - commit aba915e: Dave Rolsky: Don't assume response
  102. structure, avoid undef warnings
  103. - commit 6e34634: Dave Rolsky: Move cmd_return check up a
  104. little higher to simplify the code
  105. - commit b6e79c1: Mucking about trying to create 0.17
  106. - commit 81a6ffe: Merged branch 'dist-zilla'
  107. - commit 45bcea2: Updated Changes file for version 0.16 and 0.17
  108. - commit b28b61e: Changed maintainer information
  109. - commit b28b61e: Improved DistZilla configuration
  110. - commit b28b61e: Improved 03-spec-coverage test
  111. - commit b6b2cdb: Improved 03-spec-coverage test, skip some methods
  112. - commit 61ae784: Reformatted README to 80 columns, fixed a typo.
  113. 0.16 4-11-2013
  114. - New maintainer and beginning CPAN artist: Charles Howes <chowes@cpan.org>
  115. - First build with DistZilla (using distzilla branch from git repository, somewhat stale)
  116. - Added debug_on() and debug_off() methods.
  117. - commit 338872f: Deleted MANIFEST, MANIFEST.SKIP, Makefile.PL
  118. - commit 338872f: Changed README
  119. - commit 338872f: Created dist.ini for Distzilla
  120. - commit 338872f: Added 'uploadFile' to Commands.pm
  121. - commit 338872f: Forced stringification of arguments in send_keys,
  122. https://github.com/aivaturi/Selenium-Remote-Driver/issues/52
  123. - commit 338872f: Removed check for secure cookie in t/01-driver.t
  124. - commit 338872f: Updated
  125. t/mock-recordings/01-driver-mock-MSWin32.json
  126. t/mock-recordings/01-driver-mock-darwin.json
  127. t/mock-recordings/01-driver-mock-linux.json
  128. t/mock-recordings/02-webelement-mock-MSWin32.json
  129. t/mock-recordings/02-webelement-mock-darwin.json
  130. t/mock-recordings/02-webelement-mock-linux.json
  131. - commit 0d78dbe: Show error message from server
  132. https://github.com/aivaturi/Selenium-Remote-Driver/issues/53
  133. - commit dadb329: Click wasn't working due to typo
  134. https://github.com/aivaturi/Selenium-Remote-Driver/issues/53
  135. - commit b992873: Added Pod headers to WDKeys.pm
  136. - commit d30e31e: Bumped version number to 0.16 in dist.ini
  137. - commit 6936c64: Stripped CR from end of lines everywhere
  138. 0.15 3-12-2012
  139. - execute_script() can return web elements for data structures
  140. (arrays for .e.g.).
  141. - The error messages are now a little more descriptive in cases of
  142. "UNKNOWN ERROR".
  143. - Fixed the carp 1.25 related issue in tests.
  144. - Added support for proxy configuration.
  145. 0.14 3-1-2012
  146. - Added method send_keys_to_active_element() in driver
  147. - Added method get_sessions()
  148. - Fixed issue #11
  149. - Fixed documentation from issue #21
  150. 0.13 2-8-2012
  151. - Added support for key events in send_keys() method
  152. - Added methods to get/set window position/size
  153. - get_active_element() now returns a WebElement object
  154. - Bunch of bug fixes & documentation fixes.
  155. 0.12 9-20-2011
  156. - Tests now use mock recordings for each major os
  157. this will be expanded to include different versions
  158. of selenium
  159. - added module metadata so bug tracking and repository
  160. info will appear on metacpan (Thanks Tom Hukins!)
  161. - Fixed issue with find_child_element(s) which caused
  162. search methods which had 2+ words to fail
  163. ("css selector","class name","tag name", etc)
  164. 0.11 8-16-2011
  165. This is quite a large list for this release and will be
  166. the first cpan release. The later releases will hopefully
  167. happen often and won't be quite as large.
  168. - subroutine calls carp when an error occurs or when
  169. an element cannot be found
  170. - if an element cannot be found, carp should tell you
  171. which line in your local script where the element was
  172. not found
  173. - added the following driver api calls
  174. click,double_click,button_down,button_up,close,status,
  175. send_modifier,execute_script,execute_async_script
  176. - fixed the following api calls
  177. refresh,delete_cookie_named
  178. - $element->get_value is deprecated...
  179. subroutine now points to get_attribute('value')
  180. - added the following element api calls
  181. describe
  182. - added initial IDE plugin for the Selenium-IDE
  183. (this is based off the Rspec webdriver ide plugin)
  184. - Added "extra_capabilities" named argument to the driver
  185. - make send_keys accept one or more string argument
  186. - added javascript method to driver
  187. (thanks Phil Kania!)
  188. - fixed issue: check for empty string before trying to decode
  189. - fixed issue: if script using the module ever forked, the
  190. driver would call quit whenever that fork was closed
  191. - fixed issue: Marked as deprecated: WebElement::set_selected
  192. and WebElement::toggle
  193. - fixed issue: global $driver variable in WebElement caused the
  194. remote connection to be destroyed before the driver was able
  195. to call quit()
  196. - fixed issues:
  197. - improper definition of setImplicitWaitTimeout
  198. - Driver.pm: missing 'css' entry in FINDERS
  199. - Driver.pm::find_elements: set up $using correctly
  200. (thanks Phil Mitchell!)
  201. 0.10 5-2-2010
  202. - Implemented support for JSON wire protocol as of a4 release of
  203. Selenium 2.0.
  204. - The main Driver & WebElement modules are implemented & functional.
  205. - Added unit tests for Driver. As of this moment only live testing is
  206. supported as the server itself is alpha & mocking its behavior doesn't
  207. help our cause.
  208. - Added POD for Driver & WebElement
  209. 0.01 2-21-2010
  210. First version, released on an unsuspecting world.