|
2 | 2 | import all wrapper function |
3 | 3 | """ |
4 | 4 |
|
| 5 | +__all__ = [ |
| 6 | + "click_mouse", "mouse_table", "position", "press_mouse", "release_mouse", |
| 7 | + "scroll", "set_position", "special_table", |
| 8 | + "keys_table", "press_key", "release_key", "type_key", "check_key_is_press", |
| 9 | + "write", "hotkey", |
| 10 | + "size", "screenshot", |
| 11 | + "locate_all_image", "locate_image_center", "locate_and_click", |
| 12 | + "CriticalExit", |
| 13 | + "AutoControlException", "AutoControlKeyboardException", |
| 14 | + "AutoControlMouseException", "AutoControlCantFindKeyException", |
| 15 | + "AutoControlScreenException", "ImageNotFoundException", |
| 16 | + "AutoControlJsonActionException", "AutoControlRecordException", |
| 17 | + "AutoControlActionNullException", "AutoControlActionException", |
| 18 | + "record", "stop_record", |
| 19 | + "read_action_json", "write_action_json", |
| 20 | + "execute_action", "execute_files", "executor", "add_command_to_executor", |
| 21 | + "multiprocess_timeout", "test_record_instance", |
| 22 | + "screenshot", |
| 23 | + "generate_html", |
| 24 | + "get_dir_files_as_list", "create_template_dir", "start_autocontrol_socket_server" |
| 25 | +] |
5 | 26 |
|
6 | 27 | # import mouse |
7 | 28 | from je_auto_control.wrapper.auto_control_mouse import click_mouse |
|
0 commit comments