rvest img loading node

Hey, I was wondering if someone can help me with the following problem.

I'm using rvest to extract some nodes from a website, but the node in which I'm interested contains:

<img loading="lazy" ....

I'm not being able to extract this node since I don't know what "loading" is (it's not a class, nor an id). Does anyone know how to call this node to extract it?

Thanks

Using Chrome, right click where the element is and select Inspect, It should be at the bottom.

Then in the Elements pane which opens at the right, find the element you want, right click on it and choose either Copy selector for the css selector method of locating nodes or Copy Xpath for the, well, xpath method.
image

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.