Open leoarios27 opened 4 years ago
I used the code as intended, but an error popped up when trying to find/click the submit button on the LinkedIn login page (screenshot attached below). I searched for a different piece of code to replace the error line and found '//*[@type = "submit"]' worked for me. There are other solutions to this problem (linked below).
I am at a relatively beginner level of coding in python so it could be a mistake on my end, but hopefully this helps someone should they run into the same problem
https://www.linkedin.com/pulse/how-easy-scraping-data-from-linkedin-profiles-david-craven
Yes, the name of the class probably changed. Try the following code for login: def login(self, username, password): """ Login to LinkedIn account """ self._nav(self.login_url) self.driver.find_element_by_id('username').send_keys(self.username) pw = self.driver.find_element_by_id('password') pw.send_keys(self.password) pw.send_keys(Keys.ENTER)
I used the code as intended, but an error popped up when trying to find/click the submit button on the LinkedIn login page (screenshot attached below). I searched for a different piece of code to replace the error line and found '//*[@type = "submit"]' worked for me. There are other solutions to this problem (linked below).
I am at a relatively beginner level of coding in python so it could be a mistake on my end, but hopefully this helps someone should they run into the same problem
https://www.linkedin.com/pulse/how-easy-scraping-data-from-linkedin-profiles-david-craven