我正在尝试转换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)
没有什么对我有用。
有人有解决方案吗?