docker-android
docker-android copied to clipboard
Show clock in the video
Hi.
Is there an easy way to show current time in the recorded video? The emulator shows the hour and minute clock, but I want to see the seconds.
Looks like I can run a simple script like this to show the current time on the Appium Server terminal window title.
#!/bin/bash
while true
do
wmctrl -r "Appium Server" -N "Appim Server $(date '+%Y-%m-%d %H:%M:%S')"
sleep 1
done
The Android container does not have the wmctrl command, so it needs to be installed.
