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.
我最近一直在使用 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]
但我有一个错误
小错误,我应该有:
tr td:contains('6 Day'):nth(1) > td:nth(3) > a[href]