How to get a web elements, not sources?

Hello! so I have a question about HTML and web things.
I want to get the elements from web, not sources like dumping from HTMLService:GetAsync(url).

so I tried to dump that elements, from emojitracker, like these things.
image
but always I do HTMLService:GetAsync(http://emojitracker.com/), shows me this.


I discovered that is sources of this website.

I also tried to get elemnts from HTML Module too.
but it showed me a table with nothing.
so what I want is web elements. any idea to get these? thanks.

You want something like BeautifulSoup for Lua, but that doesn’t exist unfortunately.

I believe the keywords are “HTML Parser”. BeautifulSoup for Python, JSoup for Java, cheerio for Node, etc. But nothing for Lua I’m afraid.

1 Like

Oh. thanks for replying. then it looks like I’m unable to do it.