Generic Robot Framework library for asynchronous keyword execution originally modified by René Lehfeld.
Install the library from GitHub using pip:
pip install "git+https://github.com/Quadrob/robotframework-async.git"
- Import into a test suite with:
Library AsyncLibrary
- To run a keyword asynchronously:
${handle} Async Run some keyword first argument second argument
- To retrieve the return value, a blocking call to async_get is called with the handle:
${return_value} Async Get ${handle}