Most voted "pyautogui" questions
Automation of repetitive tasks that require keyboard shortcuts or even mouse cursor. With this package, you can create codes to, for example, open another tab, send emails, open, delete or download files.
Learn more…19 questions
Sort by count of
-
1
votes1
answer810
viewsHow to keep a key press in pyautogui
I would like to keep a key pressed for x seconds. I know that pressing the button is: pyautogui.press("key") But how can I keep her pressed?
-
1
votes4
answers1706
viewsFunctions of PYAUTOGUI not working
I am automating the installation of software using python with pyautogui: import pyautogui import time import pyperclip for window in pyautogui.getWindows(): pyautogui.getWindow(window).minimize()…
-
1
votes1
answer228
viewsI cannot install pyautogui in python 3.7
Hello guys! Here’s the thing, I tried to install pyautogui in python 3.7 on linux Mint and I’m not getting it. I did all the procedures of the official site pyautogui and all other blogs on the…
pyautoguiasked 5 years, 4 months ago Adelmarque Tavares 13 -
1
votes1
answer33
viewsClick on a button inside the power bi with python
My dear, I need my robot to click the button inside the power bi to upgrade, for it to upgrade alone, just missing this part so it gets 100% import os import pyautogui import time…
-
0
votes1
answer1260
viewspyautogui compare result CTRL+V
I have the following code import pyautogui pyautogui.moveTo(612, 269) pyautogui.doubleClick() copiar = pyautogui.hotkey('ctrl', 'c') colar = pyautogui.hotkey('ctrl', 'v') resultado = colar…
-
0
votes1
answer567
viewsA question about python Pyautogui?
Is it possible for me to use Pyautogui in a browser that is not showing up on the screen ? Type I create a code for Pyautogui to work with the coordinates of a specific browser(eg Firefox) while I…
-
0
votes1
answer194
viewsHow to activate 2 if’s at the same time in Python
I’m making a bot that plays Guitarflash (Guitar Hero browser) alone, only when I need him to press both keys of notes at the same time (I use pyautogui to press the keys and Imagegrab to detect the…
-
0
votes1
answer545
viewsPyautogui for virtual keyboard
I am working on a project using Python 3.7 and the Pyautogui library. I have a website that needs to login using the mouse to type on a virtual keyboard. The problem is that the keyboard changes…
-
0
votes1
answer252
viewsDetect color in an area with Pyautogui
I wonder if there is any way to detect a certain color in a predefined area with Pyautogui using Python. Something like pixelMatchesColor, but to detect color in an area not at a point.…
-
0
votes1
answer321
viewsSwitch Windows Screen with Python
Good Afternoon! Guys, I’m writing a Python script using the Pyautogui library. At some point, this script "needs to navigate between screens", example, my script is working a report within my TMS…
-
0
votes1
answer500
viewsHow to simulate pressing a key for a certain time?
I was trying to make a Python BOT that held the z key for 4 seconds and then released, I tried to use the pynput, but when using the keyboard.press('z'), the command clicked only once and did not…
-
0
votes0
answers21
viewsFix the speed of Video Screen_recorder.py
Hello, I’m doing a small project to better understand how screen recordings work. I am making a program in Python, which is working perfectly, however, at the time of running the video, the speed is…
-
0
votes1
answer365
viewsExtract specific information from an excel cell using pandas in Python
I need to extract information from a cell in excel using pandas and pyautogui. The cell has a date contained and accurate take out the numbers without the "/" bars. Example: 25/12/2000. What I do at…
-
0
votes1
answer44
viewsHow to make the program run from any point of programming
I have a program using pyautogui that fills 20 web formulas sequentially, changing page by page automatically and put a timer for each page of 5 seconds. Usually the pages carry in 2 seconds what…
-
-1
votes1
answer990
viewsPython (pyautogui / Selenium) save selected text
Good afternoon! I’m having a doubt here and I’d really like some help: I’m doing some tests here in python, automating the login to instagram, accessing the followers page and selecting the names…
python python-3.x selenium selenium-webdriver pyautoguiasked 4 years, 10 months ago Jonathan Deptulsqui 35 -
-1
votes1
answer39
viewsError reading a python txt file and adding variable
I have a problem with an automation I use. I use a TXT with some information but in IF I don’t 'recognize' the variable I added in TXT. import sys import webbrowser import random import time import…
-
-1
votes2
answers89
viewsWhat is the best way to select a text and how to store it in a variable?
I need to copy a text and I’m using the autopygui. I would like to know how best to select the text and how to store this information in a variable? The solution I have found so far for the first…
-
-1
votes1
answer20
viewsUse IF in Pyautogui in Python (automation)
I am trying to make a piece of a code that it keeps clicking to the side automatically (with automation) and I want when I click certain key it stops working. I do not know what I put in "IF" to…
-
-2
votes1
answer98
viewsHow do I inform pro python that an excel cell is blank
I need to inform python that if the cell "Relation" is in WHITE, it jumps to the next page and if it is filled it fills with the cell content. The code is working normally when the cell is filled,…