Ejemplo n.º 1
0
def call_recorder():
    """
    Calls the screen recorder class to start the recording of the automation.
    """
    rec = sr.ScreenRecorder(0, 0, pag.size()[0], pag.size()[1] - 150)
    rec.capture()
    rec.stop_capture()
Ejemplo n.º 2
0
def call_recorder():
    """
    Calls the screen recorder class to start the recording of the automation.
    """
    rec = sr.ScreenRecorder()
    rec.capture()
    rec.stop_capture()
Ejemplo n.º 3
0
def call_recorder():
    """
    Calls the screen recorder class to start the recording of the automation.
    """
    rec = sr.ScreenRecorder(80, 20, int(pag.size()[0] / 1.5),
                            int(pag.size()[1]))
    rec.capture()
    rec.stop_capture()