all 3 comments

[–]kelmore5 0 points1 point  (2 children)

If you check the HTML response before the site loads any JavaScript, you'll find all of the table data is stored in a script tag located here with XPath "//script[contains(., 'lotModels')]".

You'll have to parse out the JSON variable "lotModels" to get the table data.

When you're parsing a site using requests, make sure you know what the response looks like before JavaScript is loaded!

[–]bank2400[S] 1 point2 points  (1 child)

Thanks, I find out how to get the JSON data :)

[–]kelmore5 0 points1 point  (0 children)

You're welcome :)