Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desktopgame/clickman
https://github.com/desktopgame/clickman
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/desktopgame/clickman
- Owner: desktopgame
- License: wtfpl
- Created: 2020-03-25T14:07:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T09:47:57.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T12:04:32.293Z (over 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.ja.md
- License: license
Awesome Lists containing this project
README
# clickman
clickman はマウスの移動とクリックをエミュレートできます。
ゲームの自動デバッグのために作成されました。# install
````
cd clickman
pip install -r requirements.txt
````# how to use
まずは、エミュレートしたい動きを作る必要があります。
なので、実際にマウスをウィンドウに対して動かしてもらいます。
以下のコードを実行すると、マウス操作の記録が開始されます。````
python app/main.py setup
または
python app/main.py setup --output clickman.txt
````次に、作成した操作を確認します。
以下のコードでマウスの軌跡を確認できます。````
python app/main.py test
または
python app/main.py test --input clickman.txt
````最後に、以下のコマンドで実際に実行できます。
````
python app/main.py run
または
python app/main.py run --input clickman.txt
````