Add puppeteer like ready states in chrome extension

Hi @Allan_Zimmermann, I’m about scraping some websites that needs time to download it’s component completely, Sometimes the option wait until complete on Get Element activity doesn’t working properly which lead an error due to absence elements such failed locating element again error , and I can’t put delay to it because it’s expensive.
There suppose to be have modes behavior of how load pages based on resources just like puppeteer e.g (documentloaded, networkidle, networkidle2, … etc). In puppeteer I’m using networkidle2 which is the best option to load page completely without missing any resources.
So the question is, Is there any way to tell OpenRPA wait to download all resources and rending all components first, then OpenRPA resume get elements correctly without missing elements?