Skip to content

1.6.0 Bugfixes for GET ACTIVITY INSTANCE

Compare
Choose a tag to compare
@Noordsestern Noordsestern released this 24 Aug 14:22
· 54 commits to master since this release
d3a96f8

#30 GET ACTIVITY INSTANCE returns now Dict instead of Dto
Makes the result easier to process in robot as you can now use simply key notation:

    ${activities}    Get Activity Instance    id=${process}[id]
    Log    ${activities}[child_acitivities]

#31 GET ACTIVITY INSTANCE has now only id as parameter
You can now drop naming the parameter with id=:

    ${activities}    Get Activity Instance    ${process}[id]