Skip to content

Updates to work with credentials and some minor bug fixes. #149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion linkedin_scraper/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def page_has_loaded(driver):
page_state = driver.execute_script('return document.readyState;')
return page_state == 'complete'

def login(driver, email=None, password=None, cookie = None, timeout=10):
def login(driver, email=None, password=None, cookie = None, timeout=15):
if cookie is not None:
return _login_with_cookie(driver, cookie)

Expand Down
9 changes: 9 additions & 0 deletions linkedin_scraper/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ class Education(Institution):
degree: str = None


@dataclass
class Certification(Institution):
cert: str = None,
url: str = None,
issuing_body: str = None
issued_date: str = None
expires_date: str = None


@dataclass
class Interest(Institution):
title = None
Expand Down
Loading