jaltendorfer

Results 2 comments of jaltendorfer

Here is an example. Test.py: ``` import asyncio from robot.api.deco import keyword, library @library(scope="SUITE", version="1.0") class Test: @keyword("Async Sleep") async def async_sleep(self, sleep_time: int): await asyncio.sleep(sleep_time) ``` test.robot: ``` ***...

This is the view I was looking for, but there are some issues: - The view is often not updated. Sometimes only after the test execution something will be displayed...