6
下的偉大工程:如何在水豚發現者中使用正則表達式?
find "img[src='https://www.example.com/image']"
但我想也覺得
find "img[src='https://www.example.com/image?foo=bar']"
如何在取景器的屬性中使用正則表達式?
下的偉大工程:如何在水豚發現者中使用正則表達式?
find "img[src='https://www.example.com/image']"
但我想也覺得
find "img[src='https://www.example.com/image?foo=bar']"
如何在取景器的屬性中使用正則表達式?
可以檢查一個屬性使用^=
一定值開始:
find("img[src^='https://www.example.com/image']")
的製品,The Skinny on CSS Attribute Selectors,描述了各種檢查(等於,開頭,結尾,等等):
#Equals
find("img[src='https://www.example.com/image']")
#Contains somewhere
find("img[src*='https://www.example.com/image']")
#Begins with
find("img[src^='https://www.example.com/image']")
#Ends with
find("img[src$='https://www.example.com/image']")