Popularity
3.5
Declining
Activity
0.0
Stable
3
2
2
Monthly Downloads: 8
Programming language: Haskell
License: MIT License
Tags:
Testing
selenium-server alternatives and similar packages
Based on the "Testing" category.
Alternatively, view selenium-server alternatives based on common mentions on social networks and blogs.
-
hedgehog
Release with confidence, state-of-the-art property testing for Haskell. -
quickcheck-state-machine
Test monadic programs using state machine based models -
webdriver
A Haskell client for the Selenium WebDriver protocol. -
curl-runnings
A declarative test framework for quickly and easily writing integration tests against JSON API's. -
smallcheck
Test your Haskell code by exhaustively checking its properties -
ghc-prof-flamegraph
Generates data to be used with flamegraph.pl from .prof files. -
checkers
Check properties on standard classes and data structures -
monad-mock
A Haskell package that provides a monad transformer for mocking mtl-style typeclasses -
hspec-checkers
Allows to use checkers properties from hspec -
test-framework
Framework for running and organising QuickCheck test properties and HUnit test cases -
fuzzcheck
A library for testing monadic code in the spirit of QuickCheck -
tasty-hedgehog
Tasty integration for the Hedgehog property testing library -
hspec-expectations-json
Hspec expectations on JSON Values -
should-not-typecheck
A HUnit/hspec assertion to verify that an expression does not typecheck -
quickcheck-arbitrary-adt
Typeclass for generating a list of each instance of a sum type's constructors -
hspec-golden-aeson
Use tests to monitor changes in Aeson serialization -
test-framework-th
Automagically (using Template Haskell) generates the Haskell-code you need when using HUnit -
tasty-rerun
Rerun previous test suite runs to run only failing tests -
markov-chain-usage-model
Computations for Markov chain usage models -
tasty-expected-failure
Mark test cases as expected-failure -
test-framework-sandbox
test-sandbox support for the test-framework package
Build time-series-based applications quickly and at scale.
InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
Promo
www.influxdata.com
Do you think we are missing an alternative of selenium-server or a related project?
README
selenium-server
This library makes it a little easier to deal with selenium-based integration tests. It's designed to augment the existing webdriver library.
Usage:
import Test.Hspec
import Test.WebDriver
import Test.WebDriver.Server
main :: IO ()
main = hspec $
describe "My website" $
it "is called joelt.io" $ do
title <- withServer defaultSettings $
runSession defaultSession defaultCaps $ do
openPage "https://joelt.io"
waitUntil 2000 getTitle
title `shouldBe` "joelt.io"