Multiple readySelector in the same time
Is there a way to check with readySelector if multiple items on the same page loaded in different locations? (I.e. independent scripts loading boxes, similar to bigpipe).
I am pretty sure it's valid CSS to separate multiple selectors with a comma. Maybe try that?
Yes, that's true, the only problem that's understood as an 'or' connection instead of 'and'.
Good point -- there is probably a fancy way to do this but my CSS mojo is really rusty 😞. if no one else can figure it out then it's totally doable in an onReady script. Just chain a few waitFor together -- check puppeteer docs for best syntax.
Alternatively, if you wanted to enhance the readySelector internals to optionally handle an array (sequentially using and) then I would be happy to pull that in too.
Best wishes.