blob: 3f293a6fae69a4346a7c3e1dcb44152a71a46f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
Xvfb :99 -screen 0 1280x1024x24 -nolisten tcp &
set DISPLAY=:99
msiexec /i lua4win.msi &
xwd -root | magick xwd:- png:/root/1.png
xdotool mousemove --sync 573 618
xwd -root | magick xwd:- png:/root/2.png
xdotool xdotool click 1
xwd -root | magick xwd:- png:/root/3.png
xdotool mousemove --sync 725 666
xwd -root | magick xwd:- png:/root/4.png
xdotool xdotool click 1
xwd -root | magick xwd:- png:/root/5.png
xdotool mousemove --sync 743 666
xwd -root | magick xwd:- png:/root/6.png
xdotool xdotool click 1
xwd -root | magick xwd:- png:/root/7.png
|