HTML Extract doesn't stop execution

Hi Team,

I’m getting a weird scenario while using HTML EXTRACT node.
I have used it in another workflow but now is not stopping execution even the results are not being retrieved.
I don’t know what’s going on.

The configuration

And when i open an of the existing nodes it’s stuck.

The information in the field that i want to read.

Thanks in advance

Can you share the workflow?

Hi @RicardoE105 .
I have managed to fix it. There was a problem with the result returned in the function Item Node.
So i changed to return specific object and it fixed the issue.

const parsed = await simpleParser(stream)

//item.result = parsed;    ///the issue was in this line //now I'm returning parsed
return parsed
2 Likes