ymmt07039
Results
3
comments of
ymmt07039
It seems that this issue has reoccurred in 5.0.0-beta.9. It was working fine in beta.8.
`logging.getLogger("RPA.core.certificates").disabled = True` before import RPA module.
Foo.py ``` import logging from robot.api import SuiteVisitor logging.getLogger("RPA.core.certificates").disabled = True class Foo(SuiteVisitor): pass ``` Bar.robot ``` *** Settings *** Library Foo.py Library RPA.Windows ... ``` I couldn't find a...