forked from nbloomf/webdriver-w3c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdriver-w3c.cabal
182 lines (153 loc) · 4.25 KB
/
webdriver-w3c.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: webdriver-w3c
version: 0.0.2
description: Please see the README on Github at <https://github.com/nbloomf/webdriver-w3c#readme>
homepage: https://github.com/nbloomf/webdriver-w3c#readme
bug-reports: https://github.com/nbloomf/webdriver-w3c/issues
author: Nathan Bloomfield
maintainer: [email protected]
copyright: 2018 Automattic, Inc.
license: GPL-3
license-file: LICENSE
build-type: Simple
cabal-version: 1.20
category: web, webdriver, testing
synopsis: Bindings to the WebDriver API
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/nbloomf/webdriver-w3c
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options:
-fwarn-incomplete-patterns
build-depends:
base >=4.12 && <5
, aeson >=1.2.4.0
, aeson-pretty >=0.8.5
, base64-bytestring >=1.0.0.1
, bytestring >=0.10.8.2
, containers >=0.5.10.2
, directory >=1.3.0.2
, exceptions >=0.8.3
, http-client >=0.5.10
, http-types >=0.12.1
, JuicyPixels >=3.2.9.4
, lens >=4.16
, lens-aeson >=1.0.2
, network-uri >= 2.6
, QuickCheck >=2.10.1
, random >=1.1
, scientific >=0.3.5.2
, script-monad >=0.0.3
, SHA >=1.6.4.2
, stm >=2.4.5.0
, tasty >=1.0.1.1
, tasty-expected-failure >=0.11.1.1
, text >=1.2.3.0
, time >=1.8.0.2
, transformers >=0.5.5.0
, unordered-containers >=0.2.9.0
, uri-encode >=1.5.0.5
, vector >=0.12.0.1
, wreq >=0.5.2
exposed-modules:
Test.Tasty.WebDriver
Test.Tasty.WebDriver.Config
Web.Api.WebDriver.Assert
Web.Api.WebDriver
Web.Api.WebDriver.Classes
Web.Api.WebDriver.Endpoints
Web.Api.WebDriver.Helpers
Web.Api.WebDriver.Monad
Web.Api.WebDriver.Types
Web.Api.WebDriver.Types.Keyboard
Web.Api.WebDriver.Uri
executable webdriver-w3c-intro
default-language: Haskell2010
main-is: Main.lhs
hs-source-dirs: app
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
build-depends:
webdriver-w3c
, base >=4.7 && <5
, tasty >=1.0.1.1
, transformers >=0.5.5.0
executable wd-tasty-demo
default-language: Haskell2010
main-is: TastyDemo.lhs
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
webdriver-w3c
, base >=4.7 && <5
, tasty >=1.0.1.1
, tasty-expected-failure >=0.11.1.1
executable wd-parallel-stress-test
default-language: Haskell2010
main-is: ParallelStressTest.hs
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
webdriver-w3c
, base >=4.7 && <5
, tasty >=1.0.1.1
executable wd-repl-demo
default-language: Haskell2010
main-is: ReplDemo.hs
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
webdriver-w3c
, base >=4.7 && <5
, tasty >=1.0.1.1
test-suite webdriver-w3c-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
build-depends:
webdriver-w3c
, base >=4.7 && <5
, aeson >=1.2.4.0
, base64-bytestring >=1.0.0.1
, bytestring >=0.10.8.2
, containers >=0.5.10.2
, directory >=1.3.0.2
, exceptions >=0.8.3
, http-client >=0.5.10
, http-types >=0.12.1
, JuicyPixels >=3.2.9.4
, lens >=4.16
, lens-aeson >=1.0.2
, parsec >=3.1.13.0
, QuickCheck >=2.10.1
, random >=1.1
, unordered-containers >=0.2.9.0
, scientific >=0.3.5.2
, script-monad >=0.0.1
, tasty >=1.0.1.1
, tasty-expected-failure >=0.11.1.1
, tasty-hunit >=0.10.0.1
, tasty-quickcheck >=0.9.2
, time >=1.8.0.2
, text >=1.2.3.0
, transformers >=0.5.5.0
, vector >=0.12.0.1
, wreq >=0.5.2
other-modules:
Test.Tasty.WebDriver.Config.Test
Web.Api.WebDriver.Assert.Test
Web.Api.WebDriver.Monad.Test
Web.Api.WebDriver.Monad.Test.Server
Web.Api.WebDriver.Monad.Test.Server.Page
Web.Api.WebDriver.Monad.Test.Server.State
Web.Api.WebDriver.Monad.Test.Session.Success
Web.Api.WebDriver.Monad.Test.Session.InvalidElementState
Web.Api.WebDriver.Monad.Test.Session.UnknownError
Web.Api.WebDriver.Types.Test