### Install robotframework-async Source: https://github.com/chetic/robotframework-async/blob/master/README.rst Install the library using pip. This is the recommended method for installation. ```bash pip install robotframework-async ``` -------------------------------- ### Retrieve Asynchronous Keyword Return Value Source: https://github.com/chetic/robotframework-async/blob/master/README.rst Get the return value from an asynchronous operation using the 'async get' keyword with the previously obtained handle. This is a blocking call. ```robotframework ${return_value} async get ${handle} ``` -------------------------------- ### Import AsyncLibrary in Robot Framework Source: https://github.com/chetic/robotframework-async/blob/master/README.rst Import the AsyncLibrary into your Robot Framework test suite to enable asynchronous keyword execution. ```robotframework Library AsyncLibrary ``` -------------------------------- ### Run a Keyword Asynchronously Source: https://github.com/chetic/robotframework-async/blob/master/README.rst Execute a Robot Framework keyword asynchronously using the 'async run' keyword. This returns a handle to the asynchronous operation. ```robotframework ${handle} async run some keyword first argument second argument ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.