Closed YNG2020 closed 9 months ago
@YNG2020 > I tried to execute BPMN_RPA_Starter.py Hello_world.xml in cmd, but it shows: [main 2023-11-13T07:44:34.979Z] update#setState idle [main 2023-11-13T07:45:04.989Z] update#setState checking for updates [main 2023-11-13T07:45:05.180Z] update#setState idle and just stuck there. Does anyone meet a problem like this? Thanks in advanced.
I managed to overcome this problem by running the BPMN_RPA_Starter.py in PyCharm directly after I modifying the source code in BPMN_RPA_Starter.py and WorkflowEngine.py.
# In BPMN_RPA_Starter.py
from BPMN_RPA.WorkflowEngine import WorkflowEngine
pad = "Hello_world.xml"
flow = pad
input_parameter = None
engine = WorkflowEngine(input_parameter=input_parameter)
doc = engine.open(filepath=flow)
steps = engine.get_flow(doc)
engine.run_flow(steps)
# In WorkflowEngine.py Line338
# return None
return "D:/Python39/venv/data_competition/Scripts/python.exe" # my python interpreter location
I tried to execute BPMN_RPA_Starter.py Hello_world.xml in cmd, but it shows: [main 2023-11-13T07:44:34.979Z] update#setState idle [main 2023-11-13T07:45:04.989Z] update#setState checking for updates [main 2023-11-13T07:45:05.180Z] update#setState idle and just stuck there. Does anyone meet a problem like this? Thanks in advanced.