diff --git a/Test/QuickCheck/Monadic/WebDriver.hs b/Test/QuickCheck/Monadic/WebDriver.hs
--- a/Test/QuickCheck/Monadic/WebDriver.hs
+++ b/Test/QuickCheck/Monadic/WebDriver.hs
@@ -31,6 +31,7 @@
 import Test.QuickCheck.Property
 import Test.QuickCheck.Monadic as QCM
 import Test.WebDriver
+import Test.WebDriver.Session             ( WDSession )
 import Control.Monad.IO.Class
 
 data Context = ExistingSession WDSession 
@@ -42,7 +43,8 @@
     wdProperty = ioProperty . runSesh
     runSesh action = case context of
         ExistingSession sesh -> runWD sesh action
-        SessionParams caps setup -> runSession defaultSession caps $ setup >> action
+        SessionParams caps setup -> runSession conf $ setup >> action
+            where conf = defaultConfig { wdCapabilities=caps }
           
 
 runIO :: IO a -> PropertyM WD a
diff --git a/quickcheck-webdriver.cabal b/quickcheck-webdriver.cabal
--- a/quickcheck-webdriver.cabal
+++ b/quickcheck-webdriver.cabal
@@ -2,7 +2,7 @@
 --  documentation, see http://haskell.org/cabal/users-guide/
 
 name:                quickcheck-webdriver
-version:             0.1.0.6
+version:             0.1.0.7
 synopsis:            Utilities for using WebDriver with QuickCheck
 -- description:         
 license:             MIT
@@ -19,9 +19,9 @@
   exposed-modules:   Test.QuickCheck.Monadic.WebDriver
   -- other-modules:       
   -- other-extensions:    
-  build-depends:       base >=4.6 && <4.7
+  build-depends:       base >=4.6 && <4.8
                      , QuickCheck
-                     , webdriver
+                     , webdriver    >= 0.6
                      , transformers
   -- hs-source-dirs:      
   default-language:    Haskell2010
