将xpath转换为cssSelector

时间:2017-12-12 23:36:46

标签: css dom xpath css-selectors domxpath

我正在尝试转换xpath

//*[@id='formStartQuote']//div[@class='popular-countries']//ul[1]/li[1]

进入cssSelector。

我尝试了所有可能的方式说

#formStartQuote > div.popular-countries ul:nth-of-type(1) > li:nth-of-type(1)
#formStartQuote div.popular-countries ul:nth-of-type(1) > li:nth-of-type(1)
#formStartQuote > div.popular-countries > ul:nth-of-type(1) > li:nth-of-type(1)

没有什么对我有用。

有人有解决方案吗?

0 个答案:

没有答案