I have tried using Beautiful Soup with Python to crawl data from a website.
When I inspect the website itself I see the following:
"<span id="test"> 567 </span>"
but when I use Beautiful soup, all I see is:
"<span id="test"></span>"
It is as if the number has been hidden for security and protection purposes but how can I get this info from parsing? I think it is a dynamic JS element but I don’t know for sure and how to access it.
Here is an example code to implement it: