While parsing the Bitmex site, I noticed that the results of parsing using bs4 were slightly different from what I actually saw in my web browser. When I used the Devtools and continually refresh, I realized it took some time that the window we were looking at was opened, and the BS4 immediately took html and seemed to differ between the two results.
The site URL is 'https://www.bitmex.com/app/trade/XBTUSD'
You can see the difference just checking the tag <title>...</title>
.
When I use bs4, they give me the result
<title>BitMEX | Bitcoin Mercantile Exchange</title>
But when I see them in Chrome, they give me the result
<title>▼ 6486.0 (XBTUSD) 거래 - BitMEX</title>
like this.
How can I bring to Python the same code that I saw at the Chorme?
Of course, Using selenium, I can bring them to Python....but I wonder there is no way to bring them using bs4.
My programming knowledge and its ability is not good, Question can seem to be odd. If you can't understand my question I'd appreciate it if you could ask me again.
Thank you for reading it.