from selenium import webdriver from selenium.webdriver.common.by import By driver=webdriver.Chrome() driver.implicitly_wait(10) driver.get("http://www.baidu.com") #id定位 driver.find_element(By.ID,"kw").send_keys("搜索内容") #name定位 driver.find_element(By.NAME,"wd").send_keys("搜索内容") #链接文本定位 driver.find_element(By.LINK_TEXT,"新闻").click() #部分链接文本定位 driver.find_element(By.PARTIALLINK_TEXT,"新").click() #xpath定位 #绝对路径:/开头 full path #相对路径://开头,如ctrl+F搜索//input #1.相对路径+索引定位 driver.find_element(By.XPATH,"//form/span[1]/input").send_keys("搜索内容") #2.相对路径+属性定位//input[@autocomplete='off'] #3.相对路径+通配符定位//*[@*='off'] #4.相对路径+部分属性值定位//*[starts-with(@autocomplete,'of')] //*[contains(@autocomplete,'of')] #5.相对路径+文本定位//span[text()='按图片搜索']