VernonCrabtree
VernonCrabtree
I have created a branch of robot framework: https://github.com/VernonCrabtree/robotframework I am not entirely happy with it yet, but so far it has these features: * As discussed, keywords with the...
Natallia, Thank you for your query - I have not had a lot of interest in this subject, none in fact. I still think it is important - but I...
When developing a keyword, I can choose python (or other language) or I can write user-defined keywords. I have often found it faster to implement functionality in Robot Framework because...
OK - having submitted a pull request for passing of arguments into tags, now I am back to the logging control. First, a documentation review. rebot --removekeywords requires an argument....
When a keyword is started, we need to know not to log the keyword start in the logged output (so not call logger.start on each logger). When the keyword is...
Oh yea - that reminds me of the other design consideration: Should the logging control tags affect just the XML Log output, or all log output (listeners and so forth)?...
I am looking for this 'feature' too. It seems very strange not to support Robots own logging in a Robot server. I know python "print" output is picked up. But,...
For anyone else coming here: I solved it with this bit of code in my remote library: from robot.api import logger def remote_log_message(message,level,html=False): print '_{}_ {}'.format(level, message) logger.write = remote_log_message...
I have python code written on 3.8 and all my modules are installed for my 3.8 python. Now, when I try to use RobotLab I have to modify my code...