标签:follow parent 定位 tor desc end win following 优先
xpath主要用于自动化测试里的元素定位
1.Id属性:标签里有 Id属性,那么这个标签的元素定位就是 “id=内容” (首选)
2.有无内容:如无id属性,则考虑有没有“内容”,如有那么优先考虑使用 //标签名 [text()="内容"] 这个语法
例:<p c="123" y="456">内容b</p> //p[text()="内容b"]
3.标签对之间关系: 父亲parent 儿子child 长辈ancestor 后辈descendant 同辈sibling 靠上的同辈perceding-sibling 靠下的同辈following-sibling
标签:follow parent 定位 tor desc end win following 优先
原文地址:https://www.cnblogs.com/wl710271728/p/10051198.html