module Test.WebDriver (
WD(..)
, runSession, withSession, runWD
, WDConfig(..), defaultConfig
, useBrowser, useProxy, useVersion, usePlatform
, SessionHistoryConfig, noHistory, unlimitedHistory, onlyMostRecentHistory
, withRequestHeaders, withAuthHeaders
, module Test.WebDriver.Commands
, Capabilities(..), defaultCaps, allCaps, modifyCaps
, Platform(..), ProxyType(..)
, Browser(..), LogLevel(..)
, firefox, chrome, ie, opera, iPhone, iPad, android
, finallyClose, closeOnException
, module Test.WebDriver.Exceptions
, SessionHistory(..), getSessionHistory, dumpSessionHistory
) where
import Test.WebDriver.Commands
import Test.WebDriver.Config
import Test.WebDriver.Exceptions
import Test.WebDriver.Monad
import Test.WebDriver.Session
import Test.WebDriver.Types