About 82 results
Open links in new tab
  1. How to detect an image and click it with pyautogui?

    Nov 6, 2021 · PyAutoGUI has a built in function called locateOnScreen() which returns the x, y coordinates of the center of the image if it can find it on the current screen (it takes a screenshot and …

  2. Python, Pyautogui, and CTRL-C - Stack Overflow

    Aug 11, 2016 · I am attempting to complete a simple process of opening a web/browser based document, selecting a field within said document, and then copying it so that it goes into my …

  3. How to install PyAutoGui on python3 64 bit on Windows 10?

    C:\Python34\pip.exe install pyautogui #output: File "<stdin>", line 1 C:\Python34\pip.exe install pyautogui ^ SyntaxError: unexpected character after line continuation character None of these are working. …

  4. How to stop or pause pyautogui at any moment that I want?

    Nov 30, 2020 · I am building some macro program using pyautogui. Unfortunately I am not able to stop for-loop so sometimes it takes too much time until for-loop end. Is there any way to stop the program …

  5. Image matching fails with low confidence using pyautogui and OpenCV

    Apr 11, 2025 · Here's what fails: pyautogui.locateOnScreen(reference_image) → fails silently or gives low confidence (~0.2) Even if I pass the loaded image object (Image.open(path)) to …

  6. How do I install PyAutoGUI? : r/learnpython - Reddit

    Jan 23, 2023 · I have tried entering 'pip install pyautogui' but I keep getting this message: >>> pip install pyautogui File "<stdin>", line 1 pip install pyautogui ^^^^^^^ SyntaxError: invalid syntax I have …

  7. ModuleNotFoundError: No module named 'pyautogui' - Stack Overflow

    Apr 16, 2021 · I tried installing pyautogui in Visual Studio but whenever I run the following program: import subprocess import pyautogui #pylint: disable=E0401 import time import pandas as pd #pylint: …

  8. How do I detect a keypress event with PyAutoGUI? - Stack Overflow

    Nov 27, 2018 · How do I use PyAutoGUI to detect a keypress event? In my research, I could not make an example in this model: import pyautogui num = 0 if pyautogui.press('b'): # I know the right thing is …

  9. python - How to press Enter using PyAutoGUI - Stack Overflow

    Apr 10, 2022 · please tell me how to press the Enter button using the PyAutoGUI library. I've tried everything, but nothing is pressed. Can you suggest how to do it?

  10. How fast is pyautogui for automation? : r/learnpython - Reddit

    Dec 27, 2023 · I’ve used pyautogui a lot, mostly for botting (in games) and a bit for testing at work. I’d say the greatest strength of pyautogui is its computer vision which in my experience runs well, but …