diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Changelog
+
+## [0.0.0.1] - 2022-11-18
+
+* `--hide-scrollbars` for the chrome session by default.
diff --git a/src/Test/Syd/Webdriver.hs b/src/Test/Syd/Webdriver.hs
--- a/src/Test/Syd/Webdriver.hs
+++ b/src/Test/Syd/Webdriver.hs
@@ -181,12 +181,16 @@
           { chromeOptions =
               [ "--user-data-dir=" <> fromAbsDir userDataDir,
                 "--headless",
-                "--no-sandbox", -- Bypass OS security model to run on nix as well
-                "--disable-dev-shm-usage", -- Overcome limited resource problem
+                -- Bypass OS security model to run on nix as well
+                "--no-sandbox",
+                -- Overcome limited resource problem
+                "--disable-dev-shm-usage",
                 "--disable-gpu",
                 "--use-gl=angle",
                 "--use-angle=swiftshader",
-                "--window-size=1920,1080"
+                "--window-size=1920,1080",
+                -- So that screenshots tests don't start failing when something new is added at the bottom of the page that isn't even on the screen
+                "--hide-scrollbars"
               ],
             chromeBinary = Just $ fromAbsFile chromeExecutable
           }
diff --git a/sydtest-webdriver.cabal b/sydtest-webdriver.cabal
--- a/sydtest-webdriver.cabal
+++ b/sydtest-webdriver.cabal
@@ -1,18 +1,22 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.6.
+-- This file has been generated from package.yaml by hpack version 0.34.7.
 --
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-webdriver
-version:        0.0.0.0
+version:        0.0.0.1
 synopsis:       A webdriver companion library for sydtest
 category:       Testing
+author:         Tom Sydney Kerckhove
+maintainer:     syd@cs-syd.eu
+copyright:      Copyright (c) 2022 Tom Sydney Kerckhove
 license:        OtherLicense
 license-file:   LICENSE.md
 build-type:     Simple
 extra-source-files:
     LICENSE.md
+    CHANGELOG.md
 
 library
   exposed-modules:
@@ -25,7 +29,6 @@
       aeson
     , base >=4.7 && <5
     , http-client
-    , http-types
     , monad-control
     , mtl
     , network
