selenium使用Xpath定位的四種方法

2021-07-26 03:53:26 字數 608 閱讀 9623

第一種方法:通過絕對路徑做定位(相信大家不會使用這種方式)

by.xpath("html/body/div/form/input")
by.xpath("//input")
第三種方法:通過元素索引定位

by.xpath("//input[4]")
第四種方法:使用xpath屬性定位(結合第2、第3中方法可以使用)

by.xpath("//input[@id='kw1']")

by.xpath("//input[@type='name' and @name='kw1']")

第五種方法:使用部分屬性值匹配(最強大的方法)

by.xpath("//input[start-with(@id,'nice')

by.xpath("//input[ends-with(@id,'很漂亮')
by.xpath("//input[contains(@id,'那麼美')]")

//*[contains(@onclick, 'x64_3.01.3730.spkg')and @name='delete']

Selenium使用Xpath定位

應該是不全面的,暫時整理這些,後續補充吧。1.絕對路徑 格式 driver.find element by xpath 絕對路徑 例子 driver.find element by xpath html body div x form input x 代表第x個 div標籤 索引從1開始 當頁面元素...

selenium使用Xpath定位之完整篇

其中有一片文章提到了xpath元素定位,但是該文章中有些並不能適應一些特殊與個性化的場景。在文字中提供xpath元素的定位終極篇,你一定能在這裡找到你需要的解決辦法。by.xpath html body div form input by.xpath input 第三種方法 通過元素索引定位 by....

selenium使用Xpath定位之完整篇

之前寫過一篇文章提到了xpath元素定位,只寫了一些函式,但是不夠具體。於是想再寫一篇關於xpath元素的定位終極篇,相信你一定能在這裡找到你需要的解決辦法。第一種方法 通過絕對路徑方式定位 相信大家不會使用這種方式 by.xpath html body div form input 第二種方法 通...