sharataka
sharataka

Reputation: 5132

How to parse HTML that changes dynamically?

I am trying to get parse an HTML doc here: https://www.producthunt.com/tech/travelisty-2-0.

You'll see next to the blue "Get It" button, there are icons of peoples. If you click on that there are numerous twitter handles. When I inspect element, I see only 7 of them are highlighted at a given time. When I scroll through the list, the 7 that are highlighted change so that not all twitter handles are available at once.

If they were all listed in the HTML, it would be easy for me to parse. Given that this isn't the case, what is the best way to get all the twitter handless in this list?

Upvotes: 0

Views: 118

Answers (1)

semanser
semanser

Reputation: 2348

To get information you want you can do simple GET request to the next link:

https://www.producthunt.com/posts/58940/voters?offset=0&limit=1000

Upvotes: 1

Related Questions