webdriver提供了丰富的API,有多种定位策略:id,name,css选择器,xpath等,其中css选择器定位元素效率相比xpath要高些,使用id,name属性定位元素是最可靠,效率最高的一种办法. 1.元素定位的方法:find_element() 与find_elements() find_element() 该方法返回基于指定查询条件的webElement对象,或抛出不符合条件的异常 eg:element = driver.find_element(By.ID,'u1') fin…