觀察了下QQ空間實在是太好登錄了!只需要首先點擊賬號密碼登錄,然后輸入你的賬號和密碼就可以了!
其中需要注意的是;
1.進行第一次點擊的時候,點擊“賬號密碼”的時候,需要首先切換到iframe模式
2.根據id進行選擇輸入
代碼如下;
from selenium import webdriver import time from lxml import etree from selenium.webdriver.common.action_chains import ActionChains bro=webdriver.Chrome(executable_path='./driver.exe') bro.get('https://qzone.qq.com/') bro.switch_to.frame('login_frame') a_tag=bro.find_element_by_id('switcher_plogin') a_tag.click() username=bro.find_element_by_id('u') passwd=bro.find_element_by_id('p') username.send_keys("123456789") passwd.send_keys("huhuhuhuhuh") time.sleep(3) button=bro.find_element_by_id('login_button') button.click() #bro.quit()