in this case i want to click on Paste in "Notepad":
these are ss:
1.png:
2.png:
i am using this code:
time.sleep(2) //switch to app
ss_images=['1.png','2.png']
for img in ss_images:
time.sleep(.4)
x,y = pyautogui.locateCenterOnScreen(img)
pyautogui.moveTo(x,y)
pyautogui.click(x,y)
I am able to click on Edit, but then Past is not being click .
please provide the generalized solution.
in this case i want to click on Paste in "Notepad":
these are ss: 1.png: 2.png: i am using this code:
I am able to click on Edit, but then Past is not being click . please provide the generalized solution.