All Versions
30
Latest Version
0.9
Avg Release Cycle
167 days
Latest Release
1787 days ago

Changelog History
Page 2

  • v0.8.0.2 Changes

    October 15, 2015
    • ๐Ÿ›  Fixed issue introduced in 0.8 that caused build failure when using aeson < 0.10
  • v0.8.0.1 Changes

    • ๐Ÿš€ findElems and and findElemsFrom were accidentally changed to return a single Element in the last release. This has been fixed.
  • v0.7 Changes

    โšก๏ธ Because this is a fairly major update, changes have been described in detail and organized into categories. Most of the potentially breaking changes are to the "intermediate" API that might affect library code or advanced applications; changes that are not entirely "user-facing" but also not quite "internal".

    โœ… Basic web test code only has to contend with a few additional symbol exports, overloading of type signatures on some existing functions, and the reworked session history API.

    โœ… Top-level API (exposed byTest.WebDriver module)

    • withSession is now overloaded over the new constraint alias WDSessionStateControl (see below). This means that it can be used with monad transformer stacks over WD without any lifting required.
    • Added several new WDConfig convenience functions: modifyCaps, useBrowser, useVersion, usePlatform, useProxy; these functions are overloaded over the new HasCapabilities constraint alias (see below)
    • Reworked and improved session history API

      • Added a SessionHistory record type to replace the old (Request, Response ByteString) type. The new type has the same data as the previous tuple, but additionally records the number of attempted HTTP retries, and instead of Response ByteString uses Either SomeException (Response ByteString) so that HTTP request errors can be logged.
      • Removed wdKeepSessHist field from WDConfig and replaced it with wdHistoryConfig, which uses a new SessionHistoryConfig type.
          -- |A function used to append new requests/responses to session history.
          type SessionHistoryConfig = SessionHistory -> [SessionHistory] -> [SessionHistory]
      
      • The new field can be configured using several new constants: noHistory, onlyMostRecentHistory, and unlimitedHistory. Note: unlimitedHistory is now the default configuration for history. For the old behavior, use onlyMostRecentHistory.
      • New top-level functions for accessing session history
          -- |Gets the command history for the current session.
          getSessionHistory :: WDSessionState wd => wd [SessionHistory]
      
          -- |Prints a history of API requests to stdout after computing the given action
          --  or after an exception is thrown
          dumpSessionHistory :: WDSessionStateControl wd => wd a -> wd a
      

    โœ… Implicit waits API (Test.WebDriver.Commands.Wait)

    • โž• Added functions for checking some expected conditions in explicit waits: expectNotStale, expectAlertOpen, catchFailedCommand

    Typeclass API

    • WDSessionState is now a superclass of Monad and Applicative instead of MonadBaseControl IO. This makes the class significantly more flexible in how it can be used, as it no longer requires IO as a base monad.

      • For convenience the following constraint aliases were added (requires ConstraintKinds extension to use). Several existing API functions have been updated to use these new constraints where appropriate.
        type WDSessionStateIO s = (WDSessionState s, MonadBase IO s)
        type WDSessionStateControl s = (WDSessionState s, MonadBaseControl IO s)
      
      • The WDSessionStateControl constraint is equivalent to the previous WDSessionState constraint.
      • The WebDriver class is unaffected (it is now a superclass of WDSessionStateControl), so code using the basic Test.WebDriver API will not be affected.
    • ๐Ÿ†• New typeclasses added to Test.WebDriver.Capabilities: GetCapabilities and SetCapabilities; for convenience a constraint alias HasCapabilities has been added to work with both of these classes (requires ConstraintKinds extension to use)

          -- |A typeclass for readable 'Capabilities'
          class GetCapabilities t where
            getCaps :: t -> Capabilities
      
          -- |A typeclass for writable 'Capabilities'
          class SetCapabilities t where
            setCaps :: Capabilities -> t -> t
      
          -- |Read/write 'Capabilities'
          type HasCapabilities t = (GetCapabilities t, SetCapabilities t)
      

    โœ… Minor API changes (not exposed to Test.WebDriver module)

    • โœ… Test.WebDriver.Session changes
      • new function mostRecentHistory added
      • lastHTTPRequest renamed to mostRecentHTTPRequest (for consistency)
      • mkSession moved from Test.WebDriver.Config to Test.WebDriver.Session
    • โœ… Test.WebDriver.Internal changes
      • sendHTTPRequest now returns (Either SomeException (Response ByteString)) and catches any exceptions that occur during the request. When using default configuration, the exceptions are also saved in 'wdSessHist'.
      • Test.WebDriver.Internal no longer defines and exports exception types. All exception defined here previously have been moved to an unexposed Test.WebDriver.Exceptions.Internal module. These types are still exported in the usual places.

    Dependencies

    • ๐Ÿ‘ Now supports http-types up to 0.9
  • v0.6.3 Changes

    • ๐Ÿ‘Œ Support aeson 0.10
    • โž• Added support for multiple HTTP attempts per command request, using the new WDConfig field wdHTTPRetryCount
  • v0.6.3.1 Changes

    • ๐Ÿ›  Fixed an issue with aeson 0.10 support
  • v0.6.2 Changes

    • ๐Ÿ‘Œ Supports GHC 7.10
    • ๐Ÿ‘Œ Supports reworked Chrome capabilities used by newer versions of WebDriver
    • ๐Ÿ“œ Servers that return empty JSON strings for commands with no return value will no longer cause parse errors
  • v0.6.2.1 Changes

    • ๐Ÿ‘Œ Supports vector 0.11, aeson 0.9, attoparsec 0.13
  • v0.6.1 Changes

    • โž• Added the ability to pass HTTP request headers at session creation
    • ๐Ÿ›  Fixed an issue involving an obsolete JSON representation of Chrome capabilities
    • ๐Ÿ˜Œ Relax upper bound on exceptions dependency
  • v0.6 Changes

    • ๐Ÿ”ง Rather than WDSession serving dual roles as configuration and state, its functionality has been split into 2 respective types: WDConfig and WDSession.
    • โš™ runSession now takes a WDConfig instead of WDSession and Capabilities parameters.
    • โš™ runSession no longer closes its session on successful completion; use finallyClose or closeOnException for this behavior
    • โœ… The old Test.WebDriver.Classes module has been split into Test.WebDriver.Session and Test.WebDriver.Class
    • SessionState typeclass renamed to WDSessionState
    • ๐Ÿ“ฆ We now use the http-client package instead of HTTP. This is reflected in the addition of Manager fields in both WDConfig and WDSession
  • v0.6.0.4 Changes

    • ๐Ÿ‘Œ Support for monad-control 1.0