Popularity
3.6
Stable
Activity
0.0
Stable
3
3
2
Monthly Downloads: 5
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.
-
curl-runnings
A declarative test framework for quickly and easily writing integration tests against JSON APIs. -
quickcheck-arbitrary-adt
Typeclass for generating a list of each instance of a sum type's constructors -
test-framework-th
Automagically (using Template Haskell) generates the Haskell-code you need when using HUnit -
tasty-ant-xml
A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.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"