docker-android icon indicating copy to clipboard operation
docker-android copied to clipboard

Show clock in the video

Open yamamoo opened this issue 8 years ago • 1 comments

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.

yamamoo avatar Dec 15 '17 01:12 yamamoo

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. novnc

yamamoo avatar Jan 09 '18 18:01 yamamoo