Pyautogui Crashes Whenever It Clicks
Solution 1:
Maybe you are not using the click
function in right way. See the function definition:
click(x=None, y=None, clicks=1, interval=0.0, button='left', duration=0.0, tween=, pause=None, _pause=True)
Using pyautogui.click(650, 200, 10)
you are saying x=650, y=200 and clicks=10. I guess you want to say pyautogui.click(650, 200, interval=10)
.
Solution 2:
The problem may have been being caused by the fact that the latest version of pyautogui was intended for python 3.4 when the latest is 3.5. I found that if you're running Windows, you can use win32api. To install this, run the command prompt in admin mode and cd to your python script directory and run this command:
pip install win32api
This will install win32api and its prerequisites.
Then, to make a simple click wrapper for win32api, use this function:
def click(x,y):
win32api.SetCursorPos((x,y))
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)
This essentially moves the cursor somewhere, presses the left mouse button down, and releases it very fast. I did not write the click snippet shown above, but I could not find where I found it first. Sorry to whoever wrote that snippet.
Post a Comment for "Pyautogui Crashes Whenever It Clicks"