5 ms·
Yep, that's right. I was _hoping_ to get away with the same xml-parsing for each site, but I guess I'll need to customize
by landric 4y ago
Yep, that's right.
I was _hoping_ to get away with the same xml-parsing for each site, but I guess I'll need to customize
- filoleg 4y agoPractically speaking, you might actually sorta get away with it by using a single if-check, as long as you go with the aria-label approach instead of the <h#> sibling node search. My logic is that it is very unlikely that another website will copy over the exact html layout of Google News, so the <h#> is only going to work there. But I bet that Google News is far from the only website that has the article title text inside the aria-label prop in the <a> tag. So you can cover a heavy majority of websites you care about (if not all of them) by just checking both the inner text and (in case the inner text is absent) the aria-label prop. No need for any custom logic implemented just for Google News, as it would likely solve this issue for a lot of other sources.