summaryrefslogtreecommitdiff
path: root/test
blob: 589f6fb9d429e346edf7ee0ef8c58f467df3c2f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -ex

Xvfb :99 -screen 0 1280x1024x24 -nolisten tcp &
set DISPLAY=:99
sleep 5
DISPLAY=:99 WINEDLLOVERRIDES="mscoree,mshtml=" wineboot -i
# For some reason we have to set this here, having set .. ^ is not enough
DISPLAY=:99 msiexec /i lua4win.msi &
win=$(DISPLAY=:99 xdotool search --sync --name "Installer")
# Click agree to terms
DISPLAY=:99 xwd -name $win | magick xwd:- png:/root/1.png
DISPLAY=:99 xdotool mousemove --window "$win" --sync 180 285
DISPLAY=:99 xdotool sleep 0.1
DISPLAY=:99 xdotool click 1
DISPLAY=:99 xwd -name $win | magick xwd:- png:/root/2.png
# Click Install
DISPLAY=:99 xdotool mousemove --window "$win" --sync 333 333
DISPLAY=:99 xdotool sleep 0.1
DISPLAY=:99 xdotool click 1
DISPLAY=:99 xwd -name $win | magick xwd:- png:/root/3.png