Your locator is incorrect. In the HTML it shows the attribute link-id not the id. So By.ID will not work here.
Go with CSS or xpath selector
(By.XPATH,//*[@link-id = 'lnkSearchPeople']) (By.CSS,[link-id = 'lnkSearchPeople'])