I am using robot framework for writing test case. As it is not possible to debug the each and every statement, logging is only way which makes it very slow to develop test case.
I am looking for a way in i can execute the robot keyword in python console. so that I can debug and see if the keyword i have created or inbuilt keyword that i have used will work correctly. Is there a way to do it ?
eg. Can i execute wait until page contains element ${ELEMENT}?
waitForElementPresent- seems you can easily replicate it in python. Related SO answer: stackoverflow.com/a/30327701/4349415