Python Forum
Python Forum
>
Python Coding
>
General Coding Help
> Press a botton to continue the code
Full Version:
Press a botton to continue the code
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
doug2019
Nov-18-2019, 09:27 AM
Hi! Is there any command or function in Python to run the code in steps, ie set breakpoints that continue to press a button or mouse click? I need to create something like this in my code!
Gribouillis
Nov-18-2019, 09:38 AM
Debuggers can run the code in steps. Python has an integrated debugger pdb. See an introduction text
here.
Python Forum
>
Python Coding
>
General Coding Help
> Press a botton to continue the code