1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#Contenido de fichero: #Android|280|820 #Android|280|1385 for url in `cat buscar.txt` do sleep 5; am start -n com.android.chrome/com.google.android.apps.chrome.Main -d 'https://www.google.es' sleep 5; input tap 101 880 buscar=`echo $url | cut -d '|' -f1`; posicionx=`echo $url | cut -d '|' -f2`; posiciony=`echo $url | cut -d '|' -f3`; input text $buscar; input keyevent 66; sleep 5; input tap $posicionx $posiciony; done |