packages feed

webdriver-0.5.0.1: webdriver.cabal

Name: webdriver
Version: 0.5.0.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.4.*
                 , bytestring == 0.9.*
                 , text >= 0.7 && < 0.12
                 , time == 1.*
                 , transformers >= 0.2 && < 0.5
                 , zip-archive >= 0.1.1.8 && < 0.3
                 , directory == 1.*
                 , filepath == 1.*
                 , unordered-containers >= 0.1.3 && < 0.4
                 , attoparsec == 0.10.*
                 , monad-control == 0.3.*
                 , transformers-base >= 0.1 && < 1.0
                 , vector >= 0.3 && < 0.11
                 , lifted-base == 0.1.*
                 , MonadCatchIO-transformers >= 0.3 && < 0.4
                 , filesystem-trees >= 0.1.0.2 && < 0.2
                 , data-default >= 0.2 && < 1.0
                 , temporary >= 1.0 && < 2.0
                 , base64-bytestring >= 1.0 && < 1.1
                 , 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.Commands.Internal
                   Test.WebDriver.Common.Profile
                   Test.WebDriver.Firefox.Profile
                   Test.WebDriver.Chrome.Extension
                   Test.WebDriver.Capabilities
                   Test.WebDriver.Types
                   Test.WebDriver.JSON

  other-modules:   Test.WebDriver.Internal