Generic Robot Framework library for asynchronous keyword execution
Install the latest release via PyPi using pip:
pip install robotframework-async-keyword
Or add to your conda.yaml file:
- pip:
- robotframework-async-keyword
In oder to help with development you can directly install from GitHub via:
pip install git+https://github.com/rlehfeld/robotframework-async-keyword.git
Or add to your conda.yaml file:
- pip:
- git+https://github.com/rlehfeld/robotframework-async-keyword.git
Import into a test suite with:
Library AsyncLibraryTo run a keyword asynchronously:
${handle} Async Run some keyword first argument second argumentTo retrieve the return value, a blocking call to
Async Getis called with the handle:${return_value} Async Get ${handle}
To wait with a timeout use
${return_value} Async Get ${handle} timeout=5 sec