Skip to content

Commit

Permalink
Added the line for scrapping the Profile URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ItaloGustavoS authored Sep 11, 2024
1 parent bdd7ee6 commit fb5e4ca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions recruitment/src/recruitment/tools/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def find_people(self, skills):
result["name"] = person.find_element(By.CSS_SELECTOR, "span.entity-result__title-line").text
result["position"] = person.find_element(By.CSS_SELECTOR, "div.entity-result__primary-subtitle").text
result["location"] = person.find_element(By.CSS_SELECTOR, "div.entity-result__secondary-subtitle").text
result["profile_link"] = person.find_element(By.CSS_SELECTOR, "a.app-aware-link").get_attribute("href")
except Exception as e:
print(e)
continue
Expand Down

0 comments on commit fb5e4ca

Please sign in to comment.