core.jsr223

One of the challenges of scripted automation with Jython is that modules imported into scripts do not have direct access to the JSR223 scope types and objects. This module allows imported modules to access that data.

# In Jython module, not script...
from core_mock.jsr223.scope import events

def update_data(data):
    events.postUpdate("TestString1", str(data))