Joey
                                            Joey
                                        
                                    @tak-oda this is my code ```python import os from linkedin_scraper import Person, Company, actions from selenium import webdriver driver = webdriver.Chrome("./chromedriver") actions.login(driver, os.getenv("LINKEDIN_USER"), os.getenv("LINKEDIN_PASSWORD")) person = Person("https://www.linkedin.com/in/joey-sham-aa2a50122/", driver=driver, close_on_complete=False) print(person)...
@urwithajit9 it's certainly possible. Can you paste your code so I can reproduce your error? If not, it's difficult to fix it
Can you try it with [2.9.0](https://github.com/joeyism/linkedin_scraper/releases/tag/2.9.0)? A lot of things are fixed in that version
It seems like this has to do with linkedin not letting you login. If you don't use `--headless`, what does Linkedin on Chrome look like?
> I have the same problem but the solution proposed don't work for me. This is my code: > > ``` > options = Options() > options.add_argument('--headless') > options.add_argument('--no-sandbox') >...
@dazulu4 you need to install `google-chrome` or `google-chrome-stable`
Try [2.8.2](https://github.com/joeyism/linkedin_scraper/releases/tag/2.8.2)
After getting the employees, why don't you scrape the actual education of each employee with the Person object?
hmm you're right, I'll look into it
Oh I see, it's because you guys aren't logged in. I should've noticed it earlier in the error code: ``` File "/Users/ktan/Library/Python/3.9/lib/python/site-packages/linkedin_scraper/company.py", line 86, in scrape self.scrape_not_logged_in(get_employees = get_employees, close_on_complete...