Dump issues after last update

Hi everyone,

I've been trying to obtain a list of h2 per url, but after last update I can't find a way to make it work.

image

This is my formula, =Dump(HtmlH2(C3),TRUE)

I can only get the first one, but not the rest, plus I don't get the "comment" I usually get after using dump.

Is there something i'm doing wrong?.

Thanks in advance.

Hi,

The HtmlH2 formula only returns the first H2 tag and Dump will not make a difference. To get all tags, you can try:

=Dump(XPathOnUrl(A2,"//h2"),TRUE)