NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type. 오류메시지, 해결방법

CODEDRAGON Development/Python

반응형



 

오류 메시지

{BequtifulSoap}에서 n번째에 위치하는 문서 객체를 선택할 경우 아래와 같은 오류메시지가 발생합니다.

NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type.

 

 

 

 

 

해결방법

selenium 기반으로한 BequtifulSoap에서는 nth-child  선택자를 지원하지 않습니다. nth-child  선택자 대신 nth-of-type 사용하면 됩니다.

 

 

변경

bs.select('#content > div.article > div.section > div.news_area > div > ul > li:nth-child(1) > span > a')

변경

bs.select('#content > div.article > div.section > div.news_area > div > ul > li:nth-of-type(1) > span > a')

 

 



반응형

'Development > Python' 카테고리의 다른 글

re 모듈(regular expression)  (0) 2020.03.01
selenium 크롤링 설정 - CHROMDRIVER  (0) 2020.03.01
메타 문자(meta characters)  (0) 2020.02.27
CSV 파일 쓰기  (0) 2020.02.27
Python 디버깅  (0) 2020.02.27