You run this command:
Code:
cat /dev/input/event1 > /tmp/input.data
Then you tap the screen. Then you break the cat with CTRL-C.
Now that tap is recorded in /tmp/input.data and you can re-play it:
Code:
cat /tmp/input.data > /dev/input/event1
So to start the browser you have to record the home tap (that brings you to the home screen if you were elsewhere), followed by the menu tap, settings tap, beta features tap, web browser tap. Re-played in sequence (with a 1-2 second delay between them) it should get you into the browser.
I used the same technique here
https://www.mobileread.com/forums/sho...d.php?t=257511
The page flip is achieved by re-playing a next page tap I previously recorded...