Python 是一款非常流行的編程語(yǔ)言,可以用來(lái)做很多有趣的事情。其中一個(gè)有趣的事情就是在領(lǐng)英上添加聯(lián)系人。如果您也想在領(lǐng)英上添加聯(lián)系人,不妨試試 Python。
import time from selenium import webdriver from selenium.webdriver.common.keys import Keys # 打開 Chrome 瀏覽器 driver = webdriver.Chrome() # 進(jìn)入領(lǐng)英登錄頁(yè)面 driver.get("https://www.linkedin.com") # 定位輸入框并輸入賬號(hào)密碼 login_input = driver.find_element_by_id("session_key") login_input.send_keys("your_email_address") password_input = driver.find_element_by_id("session_password") password_input.send_keys("your_password") # 模擬點(diǎn)擊登錄按鈕 login_btn = driver.find_element_by_class_name("sign-in-form__submit-button") login_btn.click() # 添加聯(lián)系人 search_input = driver.find_element_by_class_name("search-global-typeahead__input") search_input.send_keys("desired_contact_name") search_input.send_keys(Keys.ENTER) time.sleep(5) # 點(diǎn)擊 Connect 按鈕 connect_btn = driver.find_element_by_css_selector("button.search-result__action-button.search-result__actions--primary.artdeco-button.artdeco-button--2.artdeco-button--primary.ember-view") connect_btn.click() time.sleep(3) # 選擇“添加備注”選項(xiàng) add_note_btn = driver.find_element_by_css_selector("button.ml1.artdeco-button.artdeco-button--muted.artdeco-button--3.ember-view") add_note_btn.click() time.sleep(1) # 輸入備注信息并發(fā)送邀請(qǐng) note_input = driver.find_element_by_id("custom-message") note_input.send_keys("Hello, I would like to connect with you.") send_btn = driver.find_element_by_id("artdeco-modal-outlet").find_element_by_css_selector("button.ml1.artdeco-button.artdeco-button--3.artdeco-button--primary.ember-view") send_btn.click() # 關(guān)閉瀏覽器 driver.quit()
如上所述,這個(gè) Python 腳本使用 Selenium 庫(kù)來(lái)自動(dòng)化添加聯(lián)系人的操作。需要注意的是,您需要提供您自己的郵箱地址和密碼,以及要添加的聯(lián)系人的姓名。