webdriver: a Haskell client for the Selenium WebDriver protocol

[ browser, bsd3, library, selenium, testing, web, webdriver ] [ Propose Tags ]

A Selenium WebDriver client for the Haskell programming language. You can use it to automate browser sessions for testing, system administration, etc. For more information about Selenium itself, see http://seleniumhq.org/


[Skip to Readme]

Modules

[Last Documentation]

  • Test
    • Test.WebDriver
      • Chrome
        • Test.WebDriver.Chrome.Extension
      • Test.WebDriver.Commands
        • Test.WebDriver.Commands.Internal
        • Test.WebDriver.Commands.Wait
      • Firefox
        • Test.WebDriver.Firefox.Profile
      • Test.WebDriver.JSON
      • Test.WebDriver.Types

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0, 0.0.1, 0.1, 0.2, 0.3, 0.3.0.1, 0.3.1, 0.3.2, 0.3.2.1, 0.3.3, 0.4, 0.5, 0.5.0.1, 0.5.1, 0.5.2, 0.5.3, 0.5.3.1, 0.5.3.2, 0.5.3.3, 0.5.4, 0.5.5, 0.6, 0.6.0.1, 0.6.0.2, 0.6.0.3, 0.6.0.4, 0.6.1, 0.6.2, 0.6.2.1, 0.6.3, 0.6.3.1, 0.7, 0.8, 0.8.0.1, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.9, 0.9.0.1, 0.10.0.0, 0.10.0.1, 0.11.0.0, 0.12.0.0 (info)
Dependencies aeson (>=0.6 && <0.7), attoparsec (>=0.10 && <0.11), base (>=4 && <5), base64-bytestring, bytestring (>=0.9 && <0.10), Cabal (>=1.6), data-default, directory (>=1 && <2), filepath (>=1.1 && <1.3), HTTP (>=4000.1 && <4000.3), lifted-base (>=0.1 && <0.2), monad-control (>=0.3 && <0.4), mtl (>=2.0 && <2.2), network (>=2.3 && <2.4), temporary (>=1.1 && <1.2), text (>=0.7 && <0.12), time (>=1.2 && <1.3), transformers (>=0.2 && <0.3), transformers-base (>=0.4 && <0.5), unordered-containers (>=0.1.3), vector (>=0.9 && <0.10), zip-archive (>=0.1.1.7) [details]
License BSD-3-Clause
Author Adam Curtis
Maintainer acurtis@spsu.edu
Category Web, Browser, Testing
Home page https://github.com/kallisti-dev/hs-webdriver
Source repo this: git clone git://github.com/kallisti-dev/hs-webdriver.git(tag 0)
head: git clone git://github.com/kallisti-dev/hs-webdriver.git
Uploaded by AdamCurtis at 2012-04-10T13:18:57Z
Distributions LTSHaskell:0.12.0.0, NixOS:0.12.0.0, Stackage:0.12.0.0
Reverse Dependencies 9 direct, 0 indirect [details]
Downloads 32190 total (135 in the last 30 days)
Rating 2.0 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-25 [all 7 reports]

Readme for webdriver-0

[back to package description]

About

hs-webdriver is a Selenium WebDriver client for the Haskell programming language. You can use it to automate browser sessions for testing, system administration, etc.

For more information about Selenium itself, see http://seleniumhq.org/

Installation

hs-webdriver uses the Cabal build system to configure, build, install, and generate documentation on multiple platforms.

For more information on using Cabal and its various installation options, see the Cabal User's Guide at http://www.haskell.org/cabal/users-guide/index.html

Installation from Hackage

hs-webdriver is hosted on Hackage under the name webdriver. Thus, the simplest way to download and install the most recent version of hs-webdriver is to run:

cabal install webdriver

There are also options to do system-wide installation, version selection, and other build options. See Cabal documentation.

Installation from this repository

To build and install a git revision for a single user on your system, run these commands from within the repository directory

using cabal-install

cabal install

using Cabal

For systems without cabal-install available, you can also run the Setup.hs script, as such:

runhaskell Setup.hs configure --user
runhaskell Setup.hs build
runhaskell Setup.hs install

For more build options, please refer to the Cabal documentation.