forked from haskell-webdriver/haskell-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdriver.cabal
88 lines (83 loc) · 3.08 KB
/
webdriver.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
Name: webdriver
Version: 0.8.5
Cabal-Version: >= 1.10
License: BSD3
License-File: LICENSE
Author: Adam Curtis
Maintainer: [email protected]
Homepage: https://github.com/kallisti-dev/hs-webdriver
Bug-Reports: https://github.com/kallisti-dev/hs-webdriver/issues
Category: Web, Browser, Testing, WebDriver, Selenium
Synopsis: a Haskell client for the Selenium WebDriver protocol
Build-Type: Simple
Extra-Source-Files: README.md, TODO.md, CHANGELOG.md, .ghci
Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
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
Flag developer
description: Package development mode
default: False
manual: True
Library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if flag(developer)
cpp-options: -DCABAL_BUILD_DEVELOPER
build-depends: base == 4.*
, aeson >= 0.6.2.0
, http-client >= 0.3
, http-types >= 0.8
, text >= 0.11.3
, bytestring >= 0.9
, attoparsec >= 0.10
, base64-bytestring >= 1.0
, transformers >= 0.4
, monad-control >= 0.3
, transformers-base >= 0.1
, lifted-base >= 0.1
, zip-archive >= 0.1.1.8
, directory > 1.0
, filepath > 1.0
, directory-tree >= 0.11
, temporary >= 1.0
, time > 1.0
, unordered-containers >= 0.1.3
, exceptions >= 0.4
, network-uri >= 2.6
, scientific >= 0.2
, data-default-class
, call-stack
, pretty-simple
exposed-modules: Test.WebDriver
Test.WebDriver.Class
Test.WebDriver.Monad
Test.WebDriver.Session
Test.WebDriver.Session.History
Test.WebDriver.Config
Test.WebDriver.Exceptions
Test.WebDriver.Commands
Test.WebDriver.Commands.Wait
Test.WebDriver.Commands.Internal
Test.WebDriver.Common.Profile
Test.WebDriver.Common.Keys
Test.WebDriver.Firefox.Profile
Test.WebDriver.Chrome.Extension
Test.WebDriver.Capabilities
Test.WebDriver.Types
Test.WebDriver.JSON
Test.WebDriver.Utils
Test.WebDriver.Internal
Test.WebDriver.Exceptions.Internal