How do I automate my Corel Draw Laser tasks using python?

154 Views Asked by At

The mouse is directed to the icon but does not click enter image description here enter image description here

My script:

import pyautogui
import keyboard


def click_on_screen():
    pyautogui.doubleClick(x=1685, y=13)
    


keyboard.add_hotkey('ctrl+alt+a', click_on_screen)

keyboard.wait()

I want to click the icon to automate my tasks

0

There are 0 best solutions below