python selenium xpath_python+selenium十四:xpath和contains模糊匹配
xpath可以以标签定位,也可以@任意属性:如:以input标签定位:driver.find_element_by_xpath("//input[@id='kw']")如:@type属性:driver.find_elements_by_xpath("//input[@type='text']")一、xpath定位1、常规属性1.通过id定位driver.find_element_by_xpath(...