packages feed

webdriver-0.3.1: webdriver.cabal

Name: webdriver
Version: 0.3.1
Cabal-Version: >= 1.6
License: BSD3
License-File: LICENSE
Author: Adam Curtis
Maintainer: acurtis@spsu.edu
Homepage: https://github.com/kallisti-dev/hs-webdriver
Category: Web, Browser, Testing
Synopsis: a Haskell client for the Selenium WebDriver protocol
Build-type: Simple
Extra-source-files: README.md, TODO, CHANGELOG.md, .ghci
Description:
        A Selenium WebDriver client for Haskell. 
        You can use it to automate browser sessions 
        for testing, system administration, etc.
        .
        For more information about Selenium itself, see
        <http://seleniumhq.org/>
        .
        To find out what's been changed in this version and others,
        see the change log at 
        <https://github.com/kallisti-dev/hs-webdriver/blob/master/CHANGELOG.md>

source-repository head
  type: git
  location: git://github.com/kallisti-dev/hs-webdriver.git  

library
  hs-source-dirs: src
  ghc-options: -Wall    
  build-depends:   base == 4.*
                 , aeson >= 0.4 && < 0.7
                 , HTTP >= 4000.1 && < 4000.3
                 , mtl >= 2.0 && < 2.2
                 , network == 2.*
                 , bytestring == 0.9.*
                 , text >= 0.7 && < 0.12
                 , time == 1.*
                 , transformers >= 0.2
                 , zip-archive >= 0.1.1.7
                 , directory == 1.*
                 , filepath >=1.1
                 , unordered-containers >= 0.1.3
                 , attoparsec == 0.10.*
                 , monad-control == 0.3.*
                 , transformers-base < 1.0
                 , vector >= 0.3
                 , lifted-base == 0.1.*
                 , filesystem-trees == 0.0.*
                 , data-default
                 , temporary
                 , base64-bytestring
                 , cond >= 0.3 && < 0.5

  exposed-modules: Test.WebDriver
                   Test.WebDriver.Classes
                   Test.WebDriver.Monad
                   Test.WebDriver.Exceptions
                   Test.WebDriver.Commands
                   Test.WebDriver.Commands.Wait
                   Test.WebDriver.Firefox.Profile
                   Test.WebDriver.Common.Profile
                   Test.WebDriver.Chrome.Extension
                   Test.WebDriver.Capabilities
                   Test.WebDriver.Types
                   Test.WebDriver.JSON

  other-modules:   Test.WebDriver.Internal