smart-clicker 1.1.12__tar.gz → 1.1.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/PKG-INFO +1 -1
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/setup.py +1 -1
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker/core.py +7 -5
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker.egg-info/PKG-INFO +1 -1
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/setup.cfg +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker/__init__.py +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker/snipper.py +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker.egg-info/SOURCES.txt +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker.egg-info/dependency_links.txt +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker.egg-info/requires.txt +0 -0
- {smart_clicker-1.1.12 → smart_clicker-1.1.13}/smart_clicker.egg-info/top_level.txt +0 -0
|
@@ -116,16 +116,18 @@ class AutoBot:
|
|
|
116
116
|
pyautogui.click(location)
|
|
117
117
|
time.sleep(0.8)
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
pyautogui.doubleClick(location)
|
|
120
|
+
time.sleep(0.1)
|
|
121
|
+
|
|
120
122
|
|
|
121
123
|
# # 方式2:右键点击
|
|
122
124
|
# # pyautogui.rightClick(location)
|
|
123
125
|
|
|
124
126
|
# # 方式3:按住点击
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
pyautogui.mouseDown(location)
|
|
128
|
+
time.sleep(0.1)
|
|
129
|
+
pyautogui.mouseUp(location)
|
|
130
|
+
time.sleep(1)
|
|
129
131
|
|
|
130
132
|
except ImageNotFoundException:
|
|
131
133
|
continue
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|