Merge branch 'screenshot-full-length-firefox' into 'master'
take full-length screenshots of pages using firefox See merge request suzanne.soy/web-client!4
This commit is contained in:
commit
68db618570
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/tests-results/
|
29
screenshot-full-firefox.sh
Executable file
29
screenshot-full-firefox.sh
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell --pure -i bash -p firefox-esr bash -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
usage() {
|
||||
printf "Usage: ./screenshot-full-firefox.sh url filename"\\n
|
||||
}
|
||||
|
||||
if test $# -ne 2; then
|
||||
usage
|
||||
exit 1
|
||||
elif test $# -eq 1 && (test "x$1" = "x-h" || test "x$1" = "x--help"); then
|
||||
usage
|
||||
exit 0
|
||||
fi
|
||||
|
||||
url="$1"
|
||||
image="$2"
|
||||
|
||||
temp_profile_home="$(mktemp -d)"
|
||||
|
||||
function cleanup() {
|
||||
rm -fr --one-file-system "$temp_profile_home"
|
||||
}
|
||||
|
||||
trap cleanup EXIT
|
||||
|
||||
HOME="$temp_profile_home" firefox --headless --window-size 1920 --screenshot "$image" "$url"
|
11
tests.sh
Executable file
11
tests.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p bash nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
# Older nix-shell --pure versions prevent nested nix-shells to properly download dependencies, so the above doesn't use --pure.
|
||||
# If this script increases in complexity and becomes more sensitive to env vars, use --pure and wrap it with an impure launcher.
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
for i in tests/*.sh; do
|
||||
"$i"
|
||||
done
|
7
tests/test-screenshot-full-firefox.sh
Executable file
7
tests/test-screenshot-full-firefox.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell --pure -i bash -p bash nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/fea633695211167753ee732c9087808d0c57461c.tar.gz
|
||||
|
||||
set -euET -o pipefail
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
../screenshot-full-firefox.sh https://example.com/ ../tests-results/screenshots-full-firefox.png
|
Loading…
Reference in New Issue
Block a user