Python Windows Control Operation Series 1: Simulate mouse clicks

Source: Internet
Author: User
Python Windows controls operating series 1: analog mouse click http://www.cnblogs.com/sanquanfeng/archive/2012/01/13/2321519.html

Simulate the mouse and click the specified button in the specified window:

Import win32gui and WIN32API

Win = win32gui. findwindow (none, dialogname)

While win = 0:

Win = win32gui. findwindow (none, dialogname)

Time. Sleep (x) # Sleep X seconds

Hbtn = win32gui. find1_wex (Win, none, none, buttonname)

(Left, top, right, bottom) = win32gui. getwindowrect (hedit)

WIN32API. setcursorpos (left + (right-left)/2, top + (bottom-top)/2) # cursor position

Time. Sleep (0.5)

# Mouse clicks

WIN32API. mouse_event (win32con. mouseeventf_leftdown, 0, 0)

Time. Sleep (0.05)

WIN32API. mouse_event (win32con. mouseeventf_leftup, 0, 0)

Time. Sleep (0.05)

Always go with the choice that scares you the most, because that's the one that is going to require
The most from you!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.