Quickstart

Using CLI

To capture actions

wizard-capture openyoutube

To replay actions

wizard-replay openyoutube -d 10 -t true

To combine sequences

wizard-combine three one two

Using python

To capture actions

def capture_actions():
    """
    ReplayWizard simple usage
    :return:
    """
    from replay_wizard.capturing import capture  # pylint: disable=import-outside-toplevel

    capture('one')

To replay actions

def replay_actions():
    """
    ReplayWizard simple usage
    :return:
    """
    from replay_wizard.replay import replay  # pylint: disable=import-outside-toplevel

    replay('one')