Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些像这样的跨度:
<span> <span>foobar</span> <span>thisisatest</span> </span>
我正在尝试使用 xpath 来查找其中包含“thisisatest”的跨度。
我试过这个:
span[text()='thisisatest']
它似乎没有工作。
您//在 XPath 的开头丢失了。
//
//span[text()='thisisatest']
你可以试试这个:
span[span= "thisisatest"]
<span>至少包含一个<span>值为 thisistest 的子元素的所有元素。
<span>
希望能帮助到你!