packages feed

sydtest-webdriver 0.0.0.0 → 0.0.0.1

raw patch · 3 files changed

+18/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

+ CHANGELOG.md view
@@ -0,0 +1,5 @@+# Changelog++## [0.0.0.1] - 2022-11-18++* `--hide-scrollbars` for the chrome session by default.
src/Test/Syd/Webdriver.hs view
@@ -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           }
sydtest-webdriver.cabal view
@@ -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