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.

Do you think we are missing an alternative of selenium-server or a related project?

Add another 'Testing' Package

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"