[Fix] Handle locator is for a root element

This commit is contained in:
Robert von Burg 2020-04-07 09:29:44 +02:00
parent f04ee3df62
commit 7eed819618
1 changed files with 14 additions and 8 deletions

View File

@ -31,6 +31,11 @@ public class ExecuteActionService extends AbstractService<LocatorArgument, Servi
realm = tx.getRealmName();
tx.lock(arg.locator.trim(3));
if (arg.locator.getSize() == 3) {
activity = tx.findElement(arg.locator);
} else {
Action action = tx.findElement(arg.locator);
// this is so we can re-execute stopped actions
@ -43,6 +48,7 @@ public class ExecuteActionService extends AbstractService<LocatorArgument, Servi
activity = action.getRootElement();
}
}
getComponent(ExecutionHandler.class).toExecution(realm, activity);