Comment #3 on issue 378 by pekka.klarck: Get keyword variables value in robot listener
http://code.google.com/p/robotframework/issues/detail?id=378

If you have implemented the listener with Python, you can pretty easily resolve variables yourself. The recommended way is using replace_variables from BuiltIn as
explained in the User Guide:
http://robotframework.googlecode.com/svn/tags/robotframework-2.1/doc/userguide/RobotFrameworkUserGuide.html#using-robot-framework-s-internal-modules

A more powerful approach, but also more brittle, is using robot.running.NAMESPACES like:

from robot.running import NAMESPACES
args = NAMESPACES.current.variables.replace_list(args)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to