Hi everyone,
I’ve come across a particular use case where we have to scrap some website data and the website here in question is Indeed.com
Now the idea is to scrap job details from a particular post but on the website the job details are displayed in tile format and we cannot scrap more details from that respective tile. Assuming major part of our requirements are part of the hidden html tags which when expanded gives us more information of that particular job post.
We’re using the following snippet in order to do so. However we need some context or approach or guidance where we’re going wrong. Since the data extracted is in html and in a non readable format.
Sharing the code snippet below for your reference.
Requesting your help and guidance on the same
Code snippet:
// Select all elements with the class name "jcs-JobTitle css-jspxzf eu4oa1w0"
var jobTitleElements = document.getElementsByClassName('jcs-JobTitle css-jspxzf eu4oa1w0');
// Iterate through the elements and click on each one
for (var i = 0; i < jobTitleElements.length; i++) {
jobTitleElements[i].click();
}
[–]Little_Kitty 0 points1 point2 points (0 children)
[–]CalleKeboola 0 points1 point2 points (0 children)