autopy-legacy icon indicating copy to clipboard operation
autopy-legacy copied to clipboard

DEPRECATED: Replaced by https://github.com/autopilot-rs/autopy

Results 21 autopy-legacy issues
Sort by recently updated
recently updated
newest added

Given the date of the last commit and the number of unanswered issues, I'm curious if there's a fork somewhere that someone has found to be active. If not, is...

from autopy import key import time key.toggle(long(key.K_CAPSLOCK), True) time.sleep(5) key.toggle(long(key.K_CAPSLOCK), False) I dont see caps lock turning on and going off after 5 secs

This is just a note that one can use Selenium WebDriver API to use/control autopy (remotely as well) without having to use native python API of autopy. It's not a...

Can I request a feature to also simulate scroll wheel events in addition to mouse moves and button clicks?

Hi, I was just wondering if this is an efficient way to communicate between computers instead of something like an RDP protocol. I'm not looking for any fancy methods. I...

rgb = autopy.bitmap.capture_screen().get_color( 1000,50 ) #return an int autopy.color.hex_to_rgb( hex(rgb) ) # hex to rgb is not right autopy.color.hex_to_rgb( rgb ) # int to rgb is right now since so,...

Using the method `key_tap`, it seems like all of the normal keys are getting passed through from my Mac host to my Linux guest using virtual box. But none of...

Probably not tricky to implement except for Linux which does it several different ways depending on desktop and whether you're in a terminal.

mouse.click works great. But i can't figure out how to do a double-click. I've tried various ways. I'm on the mac platform. ``` for _ in range(times): print "calling mouseclick"...

Looking over current docs: **Issue/Item 1:** **mouse.toggle(down, button=LEFT_BUTTON)** Holds down or releases the given mouse button in the current position. button can be LEFT_BUTTON, RIGHT_BUTTON, or CENTER_BUTTON. If no button...