File tree 4 files changed +30
-0
lines changed
4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ import pyautogui
2
+ import time
3
+ ##how many tasks you want to run ?
4
+ total = 4
5
+ n = 0
6
+ while n < total :
7
+ pos = pyautogui .locateCenterOnScreen ('Capture.PNG' )
8
+ pyautogui .moveTo (pos )
9
+ pyautogui .click ()
10
+ time .sleep (2 )
11
+ pos = pyautogui .locateCenterOnScreen ('Capture2.PNG' )
12
+ pyautogui .moveTo (pos )
13
+ pyautogui .click ()
14
+ time .sleep (2 )
15
+ n = n + 1
Original file line number Diff line number Diff line change
1
+ # GEE_batchExport
2
+ # Step 1: install pyautogui
3
+ https://pyautogui.readthedocs.io/en/latest/install.html
4
+ # Step 2: Screenshot of the "Run" button in your task and another 'Run' button when the pop-up window opened.
5
+ 'Run' button from GEE tasks.
6
+ ![ Capture] ( https://user-images.githubusercontent.com/57520148/139355999-717e4ef4-d217-47e0-933c-35cc2383127b.PNG )
7
+
8
+
9
+ 'Run' button from GEE pop-up window.
10
+ ![ Capture2] ( https://user-images.githubusercontent.com/57520148/139356012-08d356ac-b18d-4348-9a7b-0c0725da1c72.PNG )
11
+
12
+ # Step 3: Run the 'AutoClick' script
13
+ when runing the script, make sure the task "Run" button in GEE is visible and do not use the mouse to do anyting.
14
+
15
+
You can’t perform that action at this time.
0 commit comments