一.绝对路径做定位
By.xpath("html/body/div/form/input")
By.xpath("//input")
二.元素索引定位
By.xpath("//input[2]")
三.xpath属性定位
By.xpath("//input[@id='kw1']")
By.xpath("//input[@type='name' and @name='kw1']")
四.部分属性值匹配(常用)
By.xpath("//input[start-with(@id,'good')
By.xpath("//input[ends-with(@name,'太阳')
By.xpath("//input[contains(@id,'月亮')]")