-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.yaml
135 lines (128 loc) · 2.94 KB
/
package.yaml
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
name: webdriver
version: 0.12.0.0
license: BSD3
license-file: LICENSE
author: Adam Curtis <[email protected]>
maintainer: Tom McLaughlin <[email protected]>
github: "haskell-webdriver/haskell-webdriver"
category: Web, Browser, Testing, WebDriver, Selenium
synopsis: a Haskell client for the Selenium WebDriver protocol
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/haskell-webdriver/haskell-webdriver/blob/main/CHANGELOG.md>
tested-with:
- GHC == 8.6.5
- GHC == 8.8.4
- GHC == 8.10.7
- GHC == 9.0.2
- GHC == 9.2.8
- GHC == 9.4.8
- GHC == 9.6.4
extra-source-files:
- README.md
- CHANGELOG.md
default-extensions:
- FlexibleContexts
- FlexibleInstances
- LambdaCase
- NamedFieldPuns
- OverloadedStrings
- QuasiQuotes
- RecordWildCards
- ScopedTypeVariables
library:
source-dirs: src
ghc-options:
- -Wall
- -Wredundant-constraints
- -Wunused-packages
dependencies:
- aeson >= 1.4.1.0 && <2.3
- attoparsec >= 0.10
- attoparsec-aeson >=2.1.0.0 && <2.3
- base == 4.*
- base64-bytestring >= 1.0
- bytestring >= 0.9
- call-stack
- data-default-class
- directory > 1.0
- directory-tree >= 0.11
- exceptions >= 0.4
- filepath > 1.0
- http-client >= 0.3
- http-types >= 0.8
- network-uri >= 2.6
- pretty-simple
- safe-exceptions
- scientific >= 0.2
- string-interpolate
- temporary >= 1.0
- text >= 0.11.3
- time > 1.0
- transformers >= 0.4
- unordered-containers >= 0.1.3
- zip-archive >= 0.1.1.8
exposed-modules:
- Test.WebDriver
- Test.WebDriver.Capabilities
- Test.WebDriver.Chrome.Extension
- Test.WebDriver.Class
- Test.WebDriver.Commands
- Test.WebDriver.Commands.Internal
- Test.WebDriver.Commands.Wait
- Test.WebDriver.Common.Keys
- Test.WebDriver.Common.Profile
- Test.WebDriver.Config
- Test.WebDriver.Cookies
- Test.WebDriver.Exceptions
- Test.WebDriver.Exceptions.Internal
- Test.WebDriver.Firefox.Profile
- Test.WebDriver.Internal
- Test.WebDriver.JSON
- Test.WebDriver.Monad
- Test.WebDriver.Session
- Test.WebDriver.Session.History
- Test.WebDriver.Types
- Test.WebDriver.Utils
tests:
tests:
main: Main.hs
source-dirs:
- tests
ghc-options:
- -threaded
- -Wall
- -Wredundant-constraints
- -Wunused-packages
dependencies:
- aeson
- base
- bytestring
- exceptions
- filepath
- http-client
- http-types
- monad-logger
- mtl
- network
- optparse-applicative
- retry
- safe-exceptions
- sandwich
- sandwich-contexts
- string-interpolate
- temporary
- text
- unliftio-core
- unliftio
- vector
- wai-app-static
- warp
- webdriver
build-tools: sandwich:sandwich-discover