# Change Log ## hs-webdriver 0.3.2.1 ###bug fixes *Removed a bug in waitWhile' that resulted in an infinite loop *Fixed the incorrect representation of JSON profiles *Fixed relative path issues when zipping profile directories from disk ## hs-webdriver 0.3.2 ###bug fixes * Changed the constraint on filesystrem-trees to avoid a broken version * Added the missing exports for addFile and deleteFile in Common.Profile and Firefox.Profile ###new features * new Common.Profile functions: hasExtension, hasFile ## hs-webdriver 0.3.1 ###API changes * The representation of Profiles has changed, allowing it to store arbitrary files as well as extensions. The functional API for working with preferences and extensions ismostly unchanged, except for the behavior of calling addExtension consecutively with the same filepath argument. * The old <&&> and <||> operators in Test.WebDriver.Commands.Wait have been removed and replaced with the ones exported from Control.Conditional from the cond package. ###bug fixes * Fixed memory leak resulting from an infinite recursion in the FromJSON instance of PreparedProfile. * loadProfile now properly loads an entire Firefox profile from disk, rather than just the extensions and preferences. ###known issues *An issue involving lazy bytestring IO in the zip-archive package means that unusually large profiles might exceed the OSes open file limit. ###new features * several new functions for working with Firefox/Opera profiles have been added. This includes functions for loading large profiles from disk, functions for working with zipped profiles, and functions for adding arbitrary files to a profile in pure code. * new helper functions were added to Test.WebDriver.Commands.Wait, exported from the cond package. ## hs-webdriver 0.3.0.1 ###bug fixes * due to a nonconformance in the spec from the Grid server, wire responses were being received that contained no sessionId key, which subsequently resulted in a parse error from our JSON parser. This has been fixed, so that an omitted sessionId defaults to Nothing. * major bux fixes in the Firefox profile code. Note that loadProfile is unlikely to work as expected, but prepareTempProfile should. ## hs-webdriver 0.3 ### API changes * 2 typeclasses were introduced. All WebDriver commands are now overloaded on WebDriver class, so that monad transformers with a WD base can be used conveniently. * The MonadState instance of WD has been removed and replaced by SessionState. * The Firefox profile code has been generalized to work with either Opera or Firefox profiles. A phantom type parameter is used to create a distinction between the two. See documentation on Common.Profile and Firefox.Profile to learn about the specific changes that were made. * FFLogPref is now removed and replaced by the LogPref type, because both Firefox and Opera config use the same logging preference values. * Several new modules have been created, including: Capabilities, Monad, Classes, Exceptions. Many of the definitions have been moved around, but the export lists of the pre-existing modules are the same. ### bug fixes * Various issues with the serialization of capabilities meant that Chrome, IE, and Opera weren't able to startup correctly with default capabilities. This is now fixed. ### new features * General documentation improvements. * Opera configuration is now implemented. ## hs-webdriver 0.2 ### API changes * FailedCommandInfo changed so that it stores a WDSession rather than just a Maybe SessionId, thus providing server host and port information as well as the session ID. * As a result, mkFailedCommandInfo is now String -> WD FailedCommandInfo, since it requires access to the WDSession state. * HTML5StorageType changed to the more accurate WebStorageType ### new features * general documentation improvements * the uploadFile, uploadRawFile, and uploadZipEntry functions, which support uploading file contents to the remote server ## hs-webdriver 0.1 ### API changes * getWindowSize, setWindowSize, getWindowPos, and setWindowPos have all been deprived of their WindowHandle argument. This is due to the fact that using unfocused windows with those commands causes undefined behavior. ### new features * the mkCookie function for convenient cookie construction * the focusFrame function for focusing to individual frames * the setPageLoadTimeout function * the maximize function for maximizing windows * support for HTML 5 web storage