我最近一直在使用xpath。
现在我将根据我收到的建议开始大量使用CSS。
我如何使用像
这样的xpath表达式//tr[td[contains(.,'6 Day')]][1]/td[8]/a@href
并将其转换为css?
我试过
tr.td:contains('6 Day'):nth(1) > td:nth(3) > a[href]
但我收到了错误
答案 0 :(得分:1)
轻微的错误,我应该有:
tr td:contains('6 Day'):nth(1) > td:nth(3) > a[href]