5905
DOI: 10.1111/adb.13019
Resource: RRID:BDSC_5905
Curator: @olekpark
SciCrunch record: RRID:BDSC_5905
5905
DOI: 10.1111/adb.13019
Resource: RRID:BDSC_5905
Curator: @olekpark
SciCrunch record: RRID:BDSC_5905
Android also has a function to log all traffic into a file, which can later be copied to a computer for analysis in Wireshark.
This runs a loop 555 times. Takes a screenshot, names it for the loop number with padded zeros, taps the bottom right of the screen, then waits for a second to ensure the page has refreshed. Slow and dull, but works reliably.
Simple bash script to use via ADB to automatically scan pages:
#!/bin/bash
for i in {00001..00555}; do
adb exec-out screencap -p > $i.png
adb shell input tap 1000 2000
sleep 1s
done
echo All done