-
Notifications
You must be signed in to change notification settings - Fork 162
Description
I'm looking to retrieve additional elements of a search result beyond title and description found with the advanced=True parameter. For example, if you do a search on site:linkedin.com/in tesla.com:
gen = search(f"site:linkedin.com/in tesla.com", num_results=50, proxy=proxy_url, lang="en", region="us", safe=None, advanced=True)
yields:
SearchResult(url=https://www.linkedin.com/in/westbrookmorrill, title=Wes Morrill - Tesla - LinkedIn, description= Wes Morrill is a Mechanical Engineer with minors in Robotics and Industrial Design. When I knew him in college, he was always taking his projects too far. )
This returns the header (title) and description for each search result, but I also want to retrieve the follower count and location of each result as well (sub-header)

I believe these elements are rendered when Javascript is enabled. Is there a way to render Javascript and capture these elements with the library?
Thanks!