Above is a typical situation that I encounter. We hit an exception and now would like to get some more details about what went wrong. This is where I wish I could just jump right into an interactive python session and try to run the marked line manually to find out e.g. what the find_many might look like and if it actually does have a select method. How can I do this?
Question posted in Visual Studio Code
View the official documentation.
View the official documentation.
2
Answers
I think the Debug Console is what you are looking for. Press F1 and type
debug console
if you do not find the window.You can use
shift+enter
or manual select the option like the following picture with the right mouse button.