For scrapping one of the websites, it was discovered that the class names were changed at some point in time. See example below:
From:
<div class='.jss214'>
Text to grab
</div>
To:
<div class='.jss215'>
Text to grab
</div>
Currently the app's server is dependent on identifying unique classes when scraping the website. A different approach must be implemented to address this issue.
For scrapping one of the websites, it was discovered that the class names were changed at some point in time. See example below:
From:
To:
Currently the app's server is dependent on identifying unique classes when scraping the website. A different approach must be implemented to address this issue.